:root {
    --obsidian: #031411;
    --forest: #072a24;
    --deep: #0a3d35;
    --mid: #10594d;
    --accent: #1a7d6d;
    --bright: #27a38f;
    --neon: #38c9b2;
    --gold: #c8a84b;
    --gold-light: #e6c96e;
    --gold-dim: rgba(200, 168, 75, .15);
    --cream: #f0e8d8;
    --warm: #d4c4a0;
    --gray: #7fa39a;
    --dimgray: #345c55;
    --red: #c0392b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--obsidian);
    color: var(--cream);
    font-family: 'Inter', 'Tajawal', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

section,
footer {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1.5rem;
}

.billboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 90px auto 4rem;
    padding: 0 1.5rem;
}

.bb-ilahi {
    grid-column: span 12;
}

.bb-other {
    grid-column: span 12;
}

@media (max-width: 1024px) {
    .billboard-grid {
        display: flex;
        flex-direction: column;
    }

    .bb-tesis,
    .bb-ilahi {
        grid-column: span 12;
    }
}

.billboard-grid section {
    border-radius: 20px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 2rem;
    height: 100%;
}

#cur {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

#cur-r {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200, 168, 75, .4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(6, 13, 8, .9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 168, 75, .1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.nav-emblem {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    flex-shrink: 0;
}

.nav-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: .06em;
}

.nav-title span {
    color: var(--gold);
}

.nav-domain {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gray);
    letter-spacing: .2em;
    display: block;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    transition: color .3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(192, 57, 43, .15);
    border: 1px solid rgba(192, 57, 43, .4);
    padding: .3rem .8rem;
    border-radius: 100px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: #e74c3c;
    letter-spacing: .15em;
    cursor: none;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {

    0%,
    100% {
        border-color: rgba(192, 57, 43, .4);
    }

    50% {
        border-color: rgba(192, 57, 43, .8);
    }
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--obsidian);
    border: none;
    padding: .5rem 1.2rem;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    cursor: none;
    transition: all .3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 75, .4);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 70% 80% at 30% 50%, #173d20 0%, var(--obsidian) 65%);
}

.hero-min {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
    background: radial-gradient(circle at 50% 50%, #0a3d35 0%, var(--obsidian) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.st-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.st-card {
    padding: 1.5rem;
}

.feat-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feat-bg .wrap {
    padding: 0 !important;
}

.lyr-panel {
    max-height: 150px;
    overflow-y: auto;
}

/* SIDE ADS */
.side-ad {
    position: fixed;
    top: 55%;
    transform: translateY(-50%);
    width: 200px;
    z-index: 150;
    pointer-events: none;
}

.ad-left {
    left: 40px;
}

.ad-right {
    right: 40px;
}

.ad-inner {
    pointer-events: auto;
    background: rgba(42, 128, 64, .08);
    border: 1px solid rgba(200, 168, 75, .2);
    border-radius: 20px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ad-inner:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(200, 168, 75, 0.2), 0 0 20px rgba(42, 128, 64, 0.1);
    background: rgba(42, 128, 64, .12);
}

.ad-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .55rem;
    color: var(--gold);
    letter-spacing: .3em;
    background: rgba(200, 168, 75, .1);
    padding: .3rem .8rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 168, 75, .2);
}

.ad-img-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--obsidian);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-dim);
    transition: transform .5s;
}

.ad-inner:hover .ad-img-box {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--gold);
}

.ad-arabic,
.ad-emoji {
    font-size: 2.2rem;
    color: var(--gold);
}

.ad-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .6rem;
}

.ad-desc {
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ad-btn {
    display: block;
    padding: .7rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--obsidian);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all .3s;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ad-btn:hover {
    box-shadow: 0 8px 20px rgba(200, 168, 75, 0.5);
}

@media (max-width: 1550px) {
    .side-ad {
        width: 170px;
    }

    .ad-left {
        left: 15px;
    }

    .ad-right {
        right: 15px;
    }
}

@media (max-width: 1200px) {
    .side-ad {
        display: none;
    }
}

.hero-geo {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(42, 128, 64, .04) 60px), repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(42, 128, 64, .04) 60px);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .62rem;
    color: var(--gold);
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideIn .8s ease .3s forwards;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideIn .8s ease .5s forwards;
}

.hero-h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-arabic {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--neon);
    opacity: 0;
    font-weight: 300;
    margin-bottom: 1.5rem;
    direction: rtl;
    text-align: left;
    animation: slideIn .8s ease .65s forwards;
}

.hero-desc {
    font-size: 1rem;
    color: var(--warm);
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideIn .8s ease .8s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideIn .8s ease .95s forwards;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--obsidian);
    border: none;
    padding: .9rem 2rem;
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .08em;
    cursor: none;
    transition: all .3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 168, 75, .45);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: .9rem 2rem;
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .08em;
    cursor: none;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
    opacity: 0;
    animation: slideIn .8s ease 1.1s forwards;
}

.hstat-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
}

.hstat-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gray);
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.2s ease .8s forwards;
}

.globe-wrap {
    width: 420px;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 75, .12);
}

.g-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation: rot 30s linear infinite;
}

.g-ring:nth-child(2) {
    width: 78%;
    height: 78%;
    animation: rot 20s linear infinite reverse;
}

.g-ring:nth-child(3) {
    width: 58%;
    height: 58%;
    animation: rot 14s linear infinite;
}

@keyframes rot {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.globe-core {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--mid), var(--obsidian));
    border: 2px solid rgba(200, 168, 75, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(42, 128, 64, .15), inset 0 0 40px rgba(0, 0, 0, .5);
}

.gdot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(200, 168, 75, .25);
    animation: gdp 2s ease-in-out infinite;
}

.gdot::after {
    content: attr(data-label);
    position: absolute;
    left: 13px;
    top: -4px;
    white-space: nowrap;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .5rem;
    color: var(--gold);
    letter-spacing: .08em;
}

@keyframes gdp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(200, 168, 75, .5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(200, 168, 75, 0);
    }
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* TICKER */
.ticker-wrap {
    background: var(--red);
    padding: .6rem 0;
    overflow: hidden;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 190;
    border-bottom: 2px solid rgba(200, 168, 75, .15);
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--gold);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .62rem;
    font-weight: 500;
    color: var(--obsidian);
    letter-spacing: .15em;
    z-index: 1;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    gap: 4rem;
    animation: tick 35s linear infinite;
    white-space: nowrap;
    padding-left: 200px;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .68rem;
    color: #fff;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: none;
}

.ticker-item::before {
    content: '◆';
    color: rgba(255, 255, 255, .35);
    font-size: .38rem;
}

@keyframes tick {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SHARED */
.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.sec-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .62rem;
    color: var(--gold);
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.sec-label::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sec-title .gold {
    color: var(--gold);
}

.sec-title em {
    font-style: italic;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NEWS */
.news-bg {
    background: var(--forest);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.nc {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(42, 128, 64, .2);
    border-radius: 14px;
    overflow: hidden;
    transition: all .35s;
    cursor: none;
}

.nc:hover {
    border-color: rgba(200, 168, 75, .38);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.nc.feat {
    grid-row: span 2;
}

.nc-img {
    width: 100%;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nc.feat .nc-img {
    height: 310px;
}

.nc:not(.feat) .nc-img {
    height: 155px;
}

.nc-tag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .52rem;
    padding: .22rem .55rem;
    border-radius: 100px;
    letter-spacing: .1em;
}

.t-urgent {
    background: rgba(192, 57, 43, .9);
    color: #fff;
}

.t-birlik {
    background: rgba(200, 168, 75, .9);
    color: var(--obsidian);
}

.t-manevi {
    background: rgba(42, 128, 64, .9);
    color: #fff;
}

.t-dunya {
    background: rgba(26, 94, 40, .9);
    color: var(--gold-light);
}

.nc-body {
    padding: 1.2rem 1.5rem 1.5rem;
}

.nc-cat {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gold);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.nc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: .45rem;
    color: var(--cream);
}

.nc.feat .nc-title {
    font-size: 1.45rem;
}

.nc-excerpt {
    font-size: .8rem;
    color: var(--warm);
    line-height: 1.7;
    margin-bottom: .9rem;
}

.nc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nc-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gray);
}

.nc-read {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gold);
    cursor: none;
    text-decoration: none;
}

/* UNITY BANNER */
.unity {
    background: linear-gradient(135deg, var(--deep), #0a2010, var(--mid));
    border-top: 1px solid rgba(200, 168, 75, .12);
    border-bottom: 1px solid rgba(200, 168, 75, .12);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.unity::before {
    content: 'وَاعْتَصِمُوا بِحَبْلِ اللَّهِ جَمِيعًا';
    position: absolute;
    font-family: 'Tajawal', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(42, 128, 64, .04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.unity-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.unity-ayat {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.unity-meal {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--warm);
    line-height: 1.8;
    margin-bottom: .5rem;
}

.unity-ref {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gray);
    letter-spacing: .2em;
}

.flags {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.flag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .62rem;
    background: rgba(42, 128, 64, .1);
    border: 1px solid rgba(42, 128, 64, .22);
    color: var(--neon);
    padding: .28rem .75rem;
    border-radius: 100px;
    letter-spacing: .08em;
}

/* FEATURED ILAHI */
.feat-bg {
    background: linear-gradient(180deg, var(--forest), var(--deep));
}

.feat-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.artist-col {
    text-align: center;
}

.artist-portrait {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    margin: 0 auto 1.2rem;
    overflow: hidden;
    background: var(--deep);
    box-shadow: 0 0 50px rgba(200, 168, 75, .18);
    position: relative;
}

.artist-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.artist-role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .6rem;
    color: var(--gold);
    letter-spacing: .2em;
    margin-bottom: 1.5rem;
}

.artist-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    color: var(--warm);
    font-style: italic;
    line-height: 1.8;
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    text-align: left;
}

/* Track */
.track-card {
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(200, 168, 75, .2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.track-vis {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.track-body {
    padding: 1.6rem 2rem 2rem;
}

.track-genre {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gold);
    letter-spacing: .18em;
    margin-bottom: .5rem;
}

.track-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.track-artist {
    color: var(--gray);
    font-size: .88rem;
    margin-bottom: 1.4rem;
}

.prog-wrap {
    margin-bottom: 1rem;
}

.prog-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    position: relative;
    cursor: none;
}

.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    width: 0%;
    transition: width .5s linear;
}

.prog-thumb {
    width: 11px;
    height: 11px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 0%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(200, 168, 75, .5);
    transition: left .5s linear;
}

.time-row {
    display: flex;
    justify-content: space-between;
    margin: .4rem 0;
}

.time-row span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--gray);
}

.player-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.p-btn {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--gray);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: .85rem;
    cursor: none;
    transition: all .3s;
}

.p-btn:hover {
    color: var(--cream);
    border-color: var(--gold);
}

.p-play {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--obsidian);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(200, 168, 75, .4);
}

.p-play:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(200, 168, 75, .6);
}

.waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 34px;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.track-btns {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.tbtn {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--gray);
    padding: .45rem .9rem;
    border-radius: 100px;
    font-size: .77rem;
    cursor: none;
    transition: all .3s;
    font-family: 'Tajawal', sans-serif;
}

.tbtn:hover {
    color: var(--cream);
    border-color: rgba(255, 255, 255, .3);
}

.tbtn.heart {
    color: #e74c3c;
    border-color: rgba(231, 76, 60, .28);
}

.tbtn.gold {
    color: var(--gold);
    border-color: rgba(200, 168, 75, .28);
    background: rgba(200, 168, 75, .05);
}

/* Lyrics */
.lyr-panel {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(42, 128, 64, .18);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.lyr-hdr {
    display: flex;
    justify-content: space-between;
    margin-bottom: .9rem;
}

.lyr-hdr span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    letter-spacing: .18em;
}

.lyr-hdr span:first-child {
    color: var(--gold);
}

.lyr-hdr span:last-child {
    color: var(--gray);
}

.lyric {
    padding: .3rem .6rem;
    border-radius: 6px;
    font-size: .9rem;
    color: var(--gray);
    transition: all .4s;
    border-left: 2px solid transparent;
    margin-bottom: .18rem;
}

.lyric.on {
    color: var(--cream);
    background: rgba(200, 168, 75, .08);
    border-left-color: var(--gold);
    font-size: .98rem;
}

.lyric.past {
    opacity: .3;
}

/* SCHOLARS */
.sch-bg {
    background: var(--deep);
}

.sch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sch-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(42, 128, 64, .14);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all .35s;
    cursor: none;
}

.sch-card:hover {
    border-color: rgba(200, 168, 75, .28);
    transform: translateY(-4px);
}

.sch-av {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 2px solid rgba(200, 168, 75, .25);
    overflow: hidden;
    background: var(--mid);
}

.sch-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .22rem;
}

.sch-role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .56rem;
    color: var(--gold);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .7rem;
}

.sch-desc {
    font-size: .77rem;
    color: var(--warm);
    line-height: 1.7;
}

.sch-tag {
    display: inline-block;
    margin-top: .7rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .52rem;
    background: rgba(42, 128, 64, .12);
    border: 1px solid rgba(42, 128, 64, .28);
    color: var(--neon);
    padding: .18rem .55rem;
    border-radius: 100px;
    letter-spacing: .08em;
}

/* EVENTS */
.ev-bg {
    background: linear-gradient(180deg, var(--deep), var(--obsidian));
}

.ev-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.ev-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.ev-row {
    display: grid;
    grid-template-columns: 75px 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(42, 128, 64, .18);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    transition: all .35s;
    cursor: none;
}

.ev-row:hover {
    border-color: rgba(200, 168, 75, .32);
    background: rgba(200, 168, 75, .025);
}

.ev-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-align: center;
}

.ev-mon {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .56rem;
    color: var(--gray);
    letter-spacing: .14em;
    text-align: center;
}

.ev-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .18rem;
}

.ev-meta {
    font-size: .76rem;
    color: var(--warm);
}

.ev-type {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .55rem;
    padding: .22rem .6rem;
    border-radius: 100px;
    letter-spacing: .08em;
    white-space: nowrap;
}

.et-canli {
    background: rgba(192, 57, 43, .14);
    border: 1px solid rgba(192, 57, 43, .38);
    color: #e74c3c;
}

.et-online {
    background: rgba(42, 128, 64, .14);
    border: 1px solid rgba(42, 128, 64, .38);
    color: var(--neon);
}

.et-prog {
    background: rgba(200, 168, 75, .08);
    border: 1px solid rgba(200, 168, 75, .28);
    color: var(--gold);
}

.ev-btn {
    background: transparent;
    border: 1px solid rgba(200, 168, 75, .28);
    color: var(--gold);
    padding: .45rem 1.1rem;
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    cursor: none;
    transition: all .3s;
    white-space: nowrap;
}

.ev-btn:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

/* FOOTER */
footer {
    background: var(--obsidian);
    border-top: 1px solid rgba(42, 128, 64, .12);
    padding: 4rem 3rem 2rem;
}

.ft-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.ft-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.ft-brand span {
    color: var(--gold);
}

.ft-tagline {
    font-size: .82rem;
    color: var(--warm);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ft-arabic {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    color: var(--gold);
    font-size: 1rem;
    opacity: .65;
}

.ft-col-h {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    letter-spacing: .25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.ft-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: .8rem;
    transition: color .3s;
}

.ft-links a:hover {
    color: var(--cream);
}

.ft-bottom {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.ft-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .58rem;
    color: var(--dimgray);
    letter-spacing: .1em;
}

.ft-dom {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .62rem;
    color: var(--gold);
    letter-spacing: .15em;
}

/* BILLBOARD DASHBOARD STYLES */
.billboard-grid>div {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.bb-hero {
    background: radial-gradient(circle at 50% 50%, #0a3d35 0%, var(--obsidian) 70%) !important;
}

/* COMPACT TESIS */
.st-title-bb {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.st-grid-bb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.st-card-bb {
    background: rgba(255, 255, 255, .03) !important;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    padding: 1rem !important;
    text-align: center;
    transition: transform .3s;
}

.st-card-bb:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

.st-card-bb span {
    font-size: 1.2rem;
    display: block;
    margin-bottom: .3rem;
}

.st-card-bb h4 {
    font-size: .85rem;
    margin-bottom: .2rem;
    color: #fff;
}

.st-card-bb p {
    font-size: .7rem;
    color: var(--gray);
    line-height: 1.4;
}

/* COMPACT ILAHI */
.track-name-bb {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin: .5rem 0 1rem;
}

.track-vis-bb {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #000;
}

.track-meta-bb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-meta-bb p {
    font-size: .8rem;
    color: var(--gray);
}

.track-btns-bb {
    display: flex;
    gap: .8rem;
}

/* OTHER ILAHIS COMPACT EXPANDED */
.bb-sub-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .65rem;
    color: var(--gold);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-left: .5rem;
    border-left: 2px solid var(--gold);
}

.other-grid-bb {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.other-item-bb {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    padding: .8rem;
    transition: all .3s;
}

.other-item-bb:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, .04);
}

.other-vis-bb {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: .6rem;
    background: #000;
}

.other-info-bb h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: .85rem;
    margin-bottom: 0;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1200px) {
    body {
        display: flex;
        flex-direction: column;
    }

    .billboard-grid {
        flex: 1;
        margin: 90px auto 20px;
        align-content: flex-start;
    }

    footer {
        padding: 1.5rem 3rem;
    }
}

@media (max-width: 1200px) {
    .other-grid-bb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .other-grid-bb {
        grid-template-columns: 1fr;
    }
}