:root {
    --bg: #03110b;
    --bg-deep: #010704;
    --green-dark: #062819;
    --green-mid: #0f5f35;
    --green-bright: #6dff9a;
    --green-soft: #b8ffd0;
    --text: #f3fff6;
    --muted: rgba(230, 255, 236, 0.72);
    --faint: rgba(230, 255, 236, 0.52);
    --line: rgba(160, 255, 190, 0.22);
    --glass: rgba(5, 35, 22, 0.72);
    --glass-strong: rgba(5, 45, 28, 0.84);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --shell: 1180px;
    --header-height: 78px;
    --bottom-player-height: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
    margin: 0;
    min-height: 100vh;
    padding-bottom: var(--bottom-player-height);
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(62, 255, 132, 0.16), transparent 34rem),
        radial-gradient(circle at 90% 30%, rgba(23, 132, 72, 0.24), transparent 36rem),
        linear-gradient(180deg, #021008 0%, #03150c 42%, #020805 100%);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
        url("/images/whr-bg-01.png") center top / cover no-repeat;
    opacity: 0.22;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(1, 15, 8, 0.9), rgba(8, 48, 29, 0.8)),
        rgba(0, 0, 0, 0.78);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    width: min(var(--shell), calc(100% - 36px));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #05120a;
    background: linear-gradient(135deg, var(--green-soft), #37db72);
    box-shadow: 0 0 34px rgba(89, 255, 145, 0.34);
}

.brand-text {
    font-size: 1.04rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(160, 255, 190, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
}

.main-nav a {
    color: rgba(244, 255, 248, 0.82);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: 999px;
}

.main-nav a:hover {
    color: #07140c;
    background: linear-gradient(135deg, var(--green-soft), var(--green-bright));
}

.page-section {
    position: relative;
    isolation: isolate;
    padding: 92px 0;
    overflow: hidden;
}

.section-shell {
    width: min(var(--shell), calc(100% - 36px));
    margin: 0 auto;
}

.section-hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: 86px;
}

.section-hero::before,
.section-sound::before,
.section-djs::before,
.section-program::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.section-hero::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(101, 255, 154, 0.16), transparent 24rem),
        radial-gradient(circle at 72% 18%, rgba(38, 177, 91, 0.22), transparent 30rem);
}

.section-hero::after,
.section-sound::after,
.section-djs::after,
.section-program::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.section-hero::after {
    background:
        linear-gradient(90deg, rgba(1, 12, 7, 0.88), rgba(1, 12, 7, 0.34)),
        url("/images/whr-bg-01.png") center center / cover no-repeat;
    opacity: 0.36;
}

.section-sound::before {
    background:
        linear-gradient(180deg, rgba(1, 18, 10, 0.68), rgba(1, 12, 7, 0.88)),
        url("/images/whr-bg-01.png") center center / cover no-repeat;
    opacity: 0.44;
}

.section-sound::after {
    background:
        radial-gradient(circle at 15% 30%, rgba(109, 255, 154, 0.15), transparent 25rem),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.44));
}

.section-djs::before {
    background:
        linear-gradient(180deg, rgba(1, 13, 7, 0.78), rgba(1, 21, 12, 0.88)),
        url("/images/whr-bg-02.png") center center / cover no-repeat;
    opacity: 0.48;
}

.section-djs::after {
    background:
        radial-gradient(circle at 82% 32%, rgba(109, 255, 154, 0.15), transparent 28rem),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
}

.section-program::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(108, 255, 157, 0.13), transparent 26rem),
        radial-gradient(circle at 84% 60%, rgba(22, 112, 65, 0.28), transparent 28rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: 42px;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green-soft);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 6px;
    font-size: clamp(3.4rem, 9vw, 7.8rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    text-shadow: 0 0 44px rgba(86, 255, 145, 0.16);
}

.hero-copy h2 {
    margin-bottom: 22px;
    color: var(--green-soft);
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.12rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.button-primary {
    color: #04120a;
    background: linear-gradient(135deg, var(--green-soft), var(--green-bright));
    box-shadow: 0 0 34px rgba(87, 255, 144, 0.22);
}

.button-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.055);
}

.button:hover {
    transform: translateY(-1px);
}

.hero-card,
.glass-card,
.dj-card,
.program-card,
.cta-card {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-card {
    padding: 30px;
    border-radius: var(--radius-lg);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
}

.hero-badge {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 25px;
    color: #06160d;
    font-weight: 950;
    font-size: 1.18rem;
    background: linear-gradient(135deg, #d9ffe3, #55f58d);
    box-shadow: 0 0 44px rgba(99, 255, 151, 0.28);
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--green-soft);
    border: 1px solid rgba(109, 255, 154, 0.24);
    background: rgba(109, 255, 154, 0.08);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.live-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green-bright);
    box-shadow: 0 0 14px rgba(109, 255, 154, 0.9);
}

.hero-card h2 {
    margin-bottom: 10px;
    font-size: 2.15rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-card p {
    color: var(--muted);
}

.mini-status-card {
    display: flex;
    gap: 13px;
    align-items: center;
    margin: 26px 0;
    padding: 16px;
    border: 1px solid rgba(160, 255, 190, 0.16);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.18);
}

.pulse-dot {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 999px;
    background: var(--green-bright);
    box-shadow: 0 0 0 8px rgba(109, 255, 154, 0.08), 0 0 28px rgba(109, 255, 154, 0.8);
}

.mini-status-card strong,
.mini-status-card span {
    display: block;
}

.mini-status-card strong {
    color: var(--text);
    font-size: 0.95rem;
}

.mini-status-card span {
    color: var(--faint);
    font-size: 0.86rem;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-links a {
    color: var(--green-soft);
    text-decoration: none;
    font-weight: 800;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(160, 255, 190, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2,
.split-heading h2,
.program-card h2,
.cta-card h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.split-heading > p {
    max-width: 340px;
    margin-bottom: 8px;
    color: var(--muted);
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card,
.dj-card {
    min-height: 220px;
    padding: 26px;
    border-radius: var(--radius-md);
}

.glass-card h3,
.dj-card h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1.12;
}

.glass-card p,
.dj-card p {
    color: var(--muted);
}

.dj-card {
    position: relative;
    overflow: hidden;
}

.dj-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -54px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(109, 255, 154, 0.22), transparent 68%);
}

.dj-number {
    display: inline-block;
    margin-bottom: 46px;
    color: rgba(184, 255, 208, 0.58);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.dj-card a {
    position: relative;
    z-index: 1;
    color: var(--green-soft);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
}

.program-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 20px;
    align-items: stretch;
}

.program-card,
.cta-card {
    padding: 34px;
    border-radius: var(--radius-lg);
}

.program-card p,
.cta-card p {
    color: var(--muted);
}

.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(145deg, rgba(115, 255, 164, 0.16), rgba(255, 255, 255, 0.035)),
        var(--glass-strong);
}

.site-footer {
    position: relative;
    z-index: 2;
    padding: 42px 0 calc(42px + var(--bottom-player-height));
    color: var(--muted);
    background: linear-gradient(180deg, rgba(1, 10, 6, 0.35), rgba(0, 0, 0, 0.72));
    border-top: 1px solid rgba(160, 255, 190, 0.14);
}

.footer-inner {
    width: min(var(--shell), calc(100% - 36px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.footer-inner strong {
    display: block;
    color: var(--text);
}

.footer-inner p {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: var(--green-soft);
    text-decoration: none;
    font-weight: 800;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(160, 255, 190, 0.15);
}

/* =========================================================
   Fancy fixed bottom player
   ========================================================= */

.bottom-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    min-height: var(--bottom-player-height);
    padding: 14px 22px;
    border-top: 1px solid rgba(160, 255, 190, 0.26);
    background:
        linear-gradient(135deg, rgba(2, 18, 10, 0.96), rgba(8, 54, 33, 0.94)),
        rgba(0, 0, 0, 0.88);
    box-shadow: 0 -22px 55px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.bottom-player audio {
    display: none;
}

.bottom-player-inner {
    width: min(var(--shell), calc(100% - 24px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(390px, 560px) auto;
    gap: 18px;
    align-items: center;
}

.bottom-player-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.bottom-player-logo {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 17px;
    color: #04120a;
    font-weight: 950;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--green-soft), var(--green-bright));
    box-shadow: 0 0 30px rgba(109, 255, 154, 0.28);
}

.bottom-player-kicker {
    display: block;
    color: rgba(230, 255, 236, 0.62);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.bottom-player-brand strong {
    display: block;
    max-width: 100%;
    color: var(--text);
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-player-controls {
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr) minmax(150px, 190px);
    gap: 14px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(160, 255, 190, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.22);
}

.play-button {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #04120a;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 950;
    background:
        radial-gradient(circle at 30% 20%, #ffffff, transparent 30%),
        linear-gradient(135deg, var(--green-soft), var(--green-bright));
    box-shadow:
        0 0 0 7px rgba(109, 255, 154, 0.08),
        0 0 34px rgba(109, 255, 154, 0.34);
}

.play-button:hover {
    transform: translateY(-1px) scale(1.02);
}

.play-button.is-playing {
    box-shadow:
        0 0 0 7px rgba(109, 255, 154, 0.12),
        0 0 44px rgba(109, 255, 154, 0.58);
}

.play-icon {
    display: inline-block;
    transform: translateX(1px);
}

.player-status {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.player-status span {
    min-width: 0;
    color: rgba(244, 255, 248, 0.86);
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fake-eq {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 22px;
}

.fake-eq i {
    display: block;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green-soft), var(--green-bright));
    box-shadow: 0 0 12px rgba(109, 255, 154, 0.42);
    animation: whr-eq 1.1s ease-in-out infinite;
}

.fake-eq i:nth-child(1) {
    height: 9px;
    animation-delay: 0s;
}

.fake-eq i:nth-child(2) {
    height: 18px;
    animation-delay: 0.18s;
}

.fake-eq i:nth-child(3) {
    height: 13px;
    animation-delay: 0.34s;
}

.fake-eq i:nth-child(4) {
    height: 21px;
    animation-delay: 0.5s;
}

@keyframes whr-eq {
    0%,
    100% {
        transform: scaleY(0.58);
        opacity: 0.58;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.volume-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-icon {
    color: rgba(230, 255, 236, 0.58);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.volume-slider {
    width: 100%;
    height: 6px;
    appearance: none;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(90deg, var(--green-bright), rgba(255, 255, 255, 0.18));
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #f3fff6;
    box-shadow:
        0 0 0 5px rgba(109, 255, 154, 0.13),
        0 0 22px rgba(109, 255, 154, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 999px;
    background: #f3fff6;
    box-shadow:
        0 0 0 5px rgba(109, 255, 154, 0.13),
        0 0 22px rgba(109, 255, 154, 0.5);
}

.bottom-player-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-player-links a {
    color: var(--green-soft);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 850;
    white-space: nowrap;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid rgba(160, 255, 190, 0.18);
    background: rgba(255, 255, 255, 0.055);
}

.bottom-player-links a:hover,
.hero-links a:hover,
.footer-links a:hover {
    color: #04120a;
    background: linear-gradient(135deg, var(--green-soft), var(--green-bright));
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1040px) {
    :root {
        --bottom-player-height: 152px;
    }

    .bottom-player-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bottom-player-links {
        display: none;
    }
}

@media (max-width: 980px) {
    .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }

    .site-header {
        min-height: auto;
    }

    .main-nav {
        max-width: 100%;
        overflow-x: auto;
    }

    .hero-grid,
    .program-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.three {
        grid-template-columns: 1fr;
    }

    .split-heading {
        display: block;
    }
}

@media (max-width: 640px) {
    :root {
        --bottom-player-height: 178px;
    }

    body {
        padding-bottom: var(--bottom-player-height);
    }

    .section-shell,
    .header-inner,
    .footer-inner {
        width: min(100% - 24px, var(--shell));
    }

    .page-section {
        padding: 64px 0;
    }

    .section-hero {
        padding-top: 58px;
    }

    .hero-card,
    .program-card,
    .cta-card {
        padding: 24px;
        border-radius: 26px;
    }

    .main-nav a {
        padding: 9px 12px;
        font-size: 0.84rem;
    }

    .brand-text {
        display: none;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .bottom-player {
        padding: 12px;
    }

    .bottom-player-inner {
        width: 100%;
    }

    .bottom-player-brand strong {
        font-size: 0.92rem;
    }

    .bottom-player-controls {
        grid-template-columns: auto 1fr;
        border-radius: 26px;
    }

    .volume-wrap {
        grid-column: 1 / -1;
    }
}


/* ==========================================================================
   WHR program page
   ========================================================================== */

.program-page-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.program-page-intro h1 {
    margin: 0 0 1rem 0;
    color: #eaffbf;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1;
    text-shadow:
        0 0 18px rgba(150, 255, 90, 0.22),
        0 8px 30px rgba(0, 0, 0, 0.45);
}

.program-page-intro p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(235, 255, 220, 0.82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.program-float {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.5));
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    padding: 0 1.2rem;
    position: relative;
    z-index: 2;
}

.program-tabs button {
    appearance: none;
    border: 1px solid rgba(190, 255, 120, 0.24);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    background:
        linear-gradient(
            180deg,
            rgba(40, 95, 38, 0.94),
            rgba(14, 43, 22, 0.94)
        );
    color: rgba(240, 255, 225, 0.82);
    padding: 0.8rem 1.1rem 0.9rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 -8px 24px rgba(0, 0, 0, 0.24);
}

.program-tabs button:hover {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(70, 135, 48, 0.98),
            rgba(20, 60, 28, 0.98)
        );
}

.program-tabs button.active {
    color: #eaffbf;
    background:
        linear-gradient(
            180deg,
            rgba(105, 170, 58, 0.98),
            rgba(22, 72, 30, 0.98)
        );
    border-color: rgba(218, 255, 140, 0.5);
    text-shadow: 0 0 12px rgba(180, 255, 90, 0.65);
    transform: translateY(1px);
}

.program-panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(190, 255, 120, 0.32);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at top left,
            rgba(130, 255, 80, 0.14),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(10, 35, 18, 0.96),
            rgba(5, 18, 12, 0.98)
        );
    box-shadow:
        inset 0 0 38px rgba(120, 255, 80, 0.05),
        0 22px 60px rgba(0, 0, 0, 0.45);
    padding: 1.8rem;
    margin-top: -1px;
}

.program-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.3rem;
    margin-bottom: 1.3rem;
    border-bottom: 1px solid rgba(190, 255, 120, 0.18);
}

.program-panel-head h2 {
    margin: 0;
    color: #eaffbf;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.program-now-box {
    min-width: 240px;
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(210, 255, 130, 0.35);
    background:
        linear-gradient(
            135deg,
            rgba(110, 180, 55, 0.22),
            rgba(12, 35, 18, 0.85)
        );
    text-align: right;
}

.program-now-box span {
    display: block;
    color: rgba(235, 255, 220, 0.7);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
}

.program-now-box strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
}

.program-list {
    display: grid;
    gap: 0.75rem;
}

.program-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(190, 255, 120, 0.15);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.015)
        );
}

.program-time {
    color: #cfff95;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.program-info strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.program-info span {
    color: rgba(235, 255, 220, 0.72);
    line-height: 1.45;
}

.program-item.is-now {
    border-color: rgba(220, 255, 130, 0.62);
    background:
        radial-gradient(
            circle at left,
            rgba(170, 255, 80, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(80, 140, 45, 0.28),
            rgba(8, 28, 14, 0.88)
        );
    box-shadow:
        inset 0 0 24px rgba(180, 255, 90, 0.08),
        0 0 24px rgba(130, 255, 80, 0.12);
}

.program-item.is-now .program-time::before {
    content: "▶ ";
    color: #eaff8f;
}

.program-item.is-now .program-info strong {
    color: #eaffbf;
    text-shadow: 0 0 10px rgba(180, 255, 90, 0.45);
}

@media (max-width: 850px) {
    .program-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 0.5rem;
    }

    .program-tabs button {
        flex: 0 0 auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .program-panel {
        border-radius: 24px;
        padding: 1.2rem;
    }

    .program-panel-head {
        display: block;
    }

    .program-now-box {
        margin-top: 1rem;
        min-width: 0;
        text-align: left;
    }

    .program-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}


/* Social page - clean program-style layout */
.social-page {
    min-height: calc(100vh - 220px);
    padding: 7rem 1.5rem 7rem;
    text-align: center;
}

.social-hero-clean {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.social-hero-clean h1 {
    margin: 0.2rem 0 1rem;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
}

.social-hero-clean p {
    margin-left: auto;
    margin-right: auto;
}

.social-board-clean {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(160, 255, 190, 0.28);
    background:
        linear-gradient(145deg, rgba(10, 38, 25, 0.94), rgba(5, 18, 12, 0.9)),
        rgba(0, 0, 0, 0.45);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-board-head-clean {
    max-width: 720px;
    margin: 0 auto 1.6rem;
}

.social-board-head-clean h2 {
    margin: 0.2rem 0 0.6rem;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.social-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.social-clean-card {
    padding: 1.7rem;
    border-radius: 26px;
    border: 1px solid rgba(160, 255, 190, 0.25);
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
}

.social-clean-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    border-radius: 20px;
    border: 1px solid rgba(160, 255, 190, 0.3);
    background: rgba(0, 0, 0, 0.25);
    color: #baffc8;
    font-size: 1.9rem;
    font-weight: 900;
}

.social-clean-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.7rem;
}

.social-clean-card p {
    margin: 0 auto 1.3rem;
}

.social-clean-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    color: #06140c;
    background: linear-gradient(135deg, #d7ffd7, #57ff8d);
}


/* DJ page - clean program-style layout */
.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.dj-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-height: 420px;
    padding: 2rem;
    text-align: center;

    border: 1px solid rgba(138, 255, 174, 0.22);
    border-radius: 24px;
    background: rgba(5, 25, 18, 0.72);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dj-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 300px;
    height: 300px;
    margin: 0 0 18px;

    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(121, 255, 169, 0.18), transparent 65%),
        rgba(0, 0, 0, 0.18);
}

.dj-logo img {
    display: block;
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
}

.dj-info h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.dj-info h3 a {
    color: #f6fff9;
    text-decoration: none;
}

.dj-info h3 a:hover,
.dj-info h3 a:focus {
    color: #8affae;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.dj-info p {
    margin: 0;
    color: rgba(240, 255, 246, 0.78);
}

@media (max-width: 1100px) {
    .dj-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .dj-grid {
        grid-template-columns: 1fr;
    }

    .dj-card {
        min-height: 0;
    }
}
