/* ========================================
   REVIEWS — “Hear it Live!” (listener stories)
   ======================================== */

.reviews-section.reviews-live {
    position: relative;
    padding: clamp(3.5rem, 10vw, 6.25rem) 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(205, 178, 42, 0.09) 0%, transparent 55%),
        linear-gradient(165deg, #0e0d0d 0%, #292929 38%, #333333 55%, #292929 100%);
    overflow: hidden;
    border-top: 1px solid rgba(205, 178, 42, 0.12);
}

.reviews-live__band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), rgba(241, 227, 0, 0.85), var(--accent-color), transparent);
    opacity: 0.85;
    pointer-events: none;
}

.reviews-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(205, 178, 42, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
        repeating-linear-gradient(
            -8deg,
            transparent,
            transparent 48px,
            rgba(255, 255, 255, 0.02) 48px,
            rgba(255, 255, 255, 0.02) 49px
        );
    pointer-events: none;
    opacity: 0.9;
}

.reviews-live__container {
    position: relative;
    z-index: 1;
}

.reviews-header.reviews-live__header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
}

.reviews-subtitle.reviews-live__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.15rem 0.45rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(205, 178, 42, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    margin-bottom: 1rem;
}

.reviews-live__subtitle i {
    color: var(--accent-color);
    font-size: 1rem;
}

.reviews-live__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5);
    animation: reviewsLivePulse 2s ease-out infinite;
}

@keyframes reviewsLivePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.45); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.reviews-title.reviews-live__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.85rem, 5.5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.reviews-desc.reviews-live__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.92rem, 2.2vw, 1.08rem);
    margin: 0 auto;
    line-height: 1.65;
    max-width: 34rem;
}

.reviews-live__swipe-hint {
    display: none;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(205, 178, 42, 0.55);
    margin: -0.5rem 0 1rem;
}

.reviews-live__swipe-hint i {
    margin-left: 0.25rem;
    font-size: 0.75em;
    animation: reviewsSwipeNudge 1.25s ease-in-out infinite;
}

@keyframes reviewsSwipeNudge {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(5px); opacity: 1; }
}

.review-carousel-wrapper.reviews-live__carousel-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    margin-top: clamp(1rem, 3vw, 2rem);
    gap: 0;
    container-type: inline-size;
    container-name: reviews-live;
}

.review-carousel.reviews-live__carousel {
    --rl-gap: clamp(0.75rem, 2cqi, 1.25rem);
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: var(--rl-gap);
    padding: 0.75rem 0.35rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(0.75rem, env(safe-area-inset-left, 0px));
    flex: 1;
    min-width: 0;
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.review-carousel::-webkit-scrollbar {
    display: none;
}

.review-carousel.reviews-live__carousel .review-card {
    --review-card-pad: clamp(1.15rem, 3.5cqi, 1.65rem);
    flex: 0 0 auto;
    box-sizing: border-box;
    width: min(23rem, calc(100vw - 2.5rem));
    display: grid;
    grid-template-columns: 1fr minmax(2.5rem, auto);
    grid-template-rows: auto 1fr auto;
    align-content: start;
    min-height: clamp(15.5rem, 52cqi, 19.5rem);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 249, 0.96) 100%);
    border-radius: clamp(16px, 1.35cqi, 22px);
    padding: var(--review-card-pad);
    gap: 0.35rem 0.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 4px 6px rgba(41, 41, 41, 0.05),
        0 18px 44px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
    scroll-snap-align: center;
    overflow: hidden;
}

@container reviews-live (min-width: 520px) {
    .review-carousel.reviews-live__carousel .review-card {
        width: min(
            24rem,
            max(17rem, 44cqi),
            calc(100cqi - clamp(1.25rem, 4cqi, 2rem))
        );
    }
}

@container reviews-live (min-width: 900px) {
    .review-carousel.reviews-live__carousel {
        scroll-snap-type: x proximity;
    }

    .review-carousel.reviews-live__carousel .review-card {
        width: min(
            23.5rem,
            max(17.5rem, calc((100cqi - 2 * var(--rl-gap) - 1rem) / 2.28)),
            calc(100cqi - clamp(1.5rem, 5cqi, 2.5rem))
        );
        scroll-snap-align: start;
    }
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-bright), var(--accent-color));
    background-size: 200% 100%;
    animation: reviewsShimmer 3.5s linear infinite;
}

@keyframes reviewsShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(205, 178, 42, 0.22);
}

.review-carousel.reviews-live__carousel .review-quote-icon {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    align-self: start;
    width: clamp(2.5rem, 8cqi, 2.85rem);
    height: clamp(2.5rem, 8cqi, 2.85rem);
    background: linear-gradient(145deg, var(--primary-color) 0%, #1d1d1d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: clamp(0.88rem, 2.8cqi, 1rem);
    box-shadow: 0 6px 18px rgba(41, 41, 41, 0.28);
    border: 1px solid rgba(205, 178, 42, 0.15);
}

.review-carousel.reviews-live__carousel .review-stars {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    gap: 0.2rem;
    margin: 0;
    padding-top: 0.15rem;
    align-self: center;
}

.review-stars i {
    color: #e6b800;
    font-size: 0.95rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.review-stars i.far {
    color: #d4d4d4;
    filter: none;
}

.review-carousel.reviews-live__carousel .review-text {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(0.9rem, 2.4cqi, 1.02rem);
    line-height: 1.62;
    color: #3a4543;
    font-style: italic;
    margin: 0.35rem 0 0;
    padding-right: 0;
    min-height: 0;
}

.review-carousel.reviews-live__carousel .review-user {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: clamp(0.85rem, 2.5cqi, 1.1rem);
    margin-top: 0.5rem;
    border-top: 1px solid rgba(41, 41, 41, 0.08);
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #464545 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--accent-color);
    box-shadow: 0 4px 14px rgba(41, 41, 41, 0.22);
    position: relative;
    flex-shrink: 0;
}

.review-avatar::before {
    content: attr(data-initials);
}

.review-avatar::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
}

.review-user-info h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.15rem;
    letter-spacing: 0.02em;
}

.review-user-info span {
    font-size: 0.8rem;
    color: #6b7a77;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.review-user-info span i {
    color: #ddb837;
    font-size: 0.72rem;
}

.carousel-arrow {
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(205, 178, 42, 0.22);
    z-index: 2;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    flex-shrink: 0;
    align-self: center;
}

.carousel-arrow.left {
    margin-right: 0.65rem;
}

.carousel-arrow.right {
    margin-left: 0.65rem;
}

.carousel-arrow:hover {
    filter: brightness(1.06);
    transform: scale(1.08);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:active {
    transform: scale(1.02);
}

.reviews-dots.reviews-live__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    min-height: 0.5rem;
}

@media (max-width: 768px) {
    .reviews-live__swipe-hint {
        display: block;
    }

    .reviews-header.reviews-live__header {
        margin-bottom: 0.35rem;
    }

    .review-carousel.reviews-live__carousel {
        padding: 0.5rem 0 0.85rem;
        gap: 0.75rem;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .carousel-arrow {
        display: none;
    }

    .review-carousel-wrapper.reviews-live__carousel-wrap {
        margin-top: 0.5rem;
    }

    .review-carousel.reviews-live__carousel .review-card {
        width: min(22rem, calc(100vw - 2rem));
        min-height: 0;
        scroll-snap-align: center;
    }

    .review-carousel.reviews-live__carousel {
        scroll-snap-type: x mandatory;
    }
}

@media (max-width: 480px) {
    .reviews-section.reviews-live {
        padding: 2.75rem 0 3.25rem;
    }

    .reviews-subtitle.reviews-live__subtitle {
        font-size: 0.62rem;
        padding: 0.38rem 0.85rem 0.38rem 0.45rem;
        letter-spacing: 0.1em;
    }

    .reviews-title.reviews-live__title {
        letter-spacing: 0.04em;
    }

    .reviews-desc.reviews-live__desc {
        padding: 0 0.25rem;
    }

    .review-carousel.reviews-live__carousel .review-card {
        width: min(21rem, calc(100vw - 1.65rem));
    }

    .review-carousel.reviews-live__carousel .review-text {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .review-carousel.reviews-live__carousel .review-quote-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .review-carousel.reviews-live__carousel .review-avatar {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 0.88rem;
    }

    .review-carousel.reviews-live__carousel .review-user-info h4 {
        font-size: 0.9rem;
    }
}


/* 
  Gee Radio - Global Styles
  Primary Color: #292929 (Charcoal)
  Accent Color: #cdb22a (Gold)
  Bright Accent: #f1e300 (Electric Yellow)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&family=Outfit:wght@500;600;700&display=swap');

:root {
    --primary-color: #292929;
    --accent-color: #cdb22a;
    --accent-bright: #f1e300;
    --accent-gold: #ddb837;
    --text-light: #FFFFFF;
    --text-dark: #292929;
    --near-black: #0e0d0d;
    --bg-light: #f3f5f7;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
    
    /* Fluid Typography */
    --fs-h1: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(2rem, 5vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2rem);
    --fs-body: clamp(1rem, 2vw, 1.125rem);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, .brand-name {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Mobile-only auth in hamburger menu – hidden on desktop */
.nav-mobile-auth {
    display: none;
}

/* Mobile drawer header (logo + close) — hidden on desktop */
.nav-drawer__head {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Shared music-bar loader (preloader + inline sections) */
.gee-music-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 2.75rem;
}

.gee-music-bars__bar {
    width: 7px;
    height: 2.5rem;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), var(--accent-color));
    transform-origin: bottom center;
    will-change: transform;
    animation: geeMusicBar 0.85s ease-in-out infinite;
}

.gee-music-bars__bar:nth-child(1) { animation-delay: 0s; }
.gee-music-bars__bar:nth-child(2) { animation-delay: 0.1s; }
.gee-music-bars__bar:nth-child(3) { animation-delay: 0.2s; }
.gee-music-bars__bar:nth-child(4) { animation-delay: 0.3s; }
.gee-music-bars__bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes geeMusicBar {
    0%, 100% {
        transform: scaleY(0.28);
        opacity: 0.75;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gee-music-bars__bar {
        animation: none;
        transform: scaleY(0.55);
        opacity: 0.9;
    }
}

/* Global preloader */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, #292929 0%, #1d1d1d 100%);
    color: rgba(255, 255, 255, 0.92);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-preloader.site-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader .gee-music-bars {
    margin: 0;
}

.site-preloader__text {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Desktop app shell (left sidebar + bottom player) */
.desktop-layout-sidebar,
.desktop-bottom-player {
    display: none;
}

@media (min-width: 993px) {
    body {
        padding-left: 220px;
        padding-bottom: 68px;
    }

    .navbar {
        display: none;
    }

    .desktop-layout-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 80px; /* clear bottom player */
        width: 220px;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1rem 0.9rem 1.25rem;
        z-index: 1200;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        background:
            radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
            linear-gradient(180deg, #f1e300 0%, var(--accent-color) 48%, #b89a22 100%);
        border-right: 1px solid rgba(14, 13, 13, 0.12);
        box-shadow: 6px 0 28px rgba(0, 0, 0, 0.18);
        scrollbar-width: thin;
        scrollbar-color: rgba(14, 13, 13, 0.35) transparent;
    }

    .desktop-layout-sidebar__brand {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 88px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        flex-shrink: 0;
    }

    .desktop-layout-sidebar__brand img {
        max-width: 172px;
        width: 100%;
        height: auto;
        display: block;
    }

    .desktop-layout-sidebar__nav {
        display: flex;
        flex-direction: column;
        gap: 0.42rem;
        flex: 1 1 auto;
        min-height: 0;
        padding-bottom: 0.35rem;
    }

    .desktop-layout-sidebar__earn-btn {
        width: 100%;
        border: 1px solid rgba(14, 13, 13, 0.2);
        background: #0e0d0d;
        color: #f1e300;
        border-radius: 10px;
        padding: 0.78rem 0.72rem;
        margin-top: 0.4rem;
        font-size: 0.95rem;
        font-weight: 800;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease;
    }

    .desktop-layout-sidebar__earn-btn i {
        color: #f1e300;
    }

    .desktop-layout-sidebar__earn-btn:hover {
        transform: translateY(-1px);
        background: #292929;
        color: #fff;
    }

    .desktop-layout-sidebar__earn-btn:hover i {
        color: #fff;
    }

    /* Earn on + panel minimized: BambaSwap orange */
    .desktop-layout-sidebar__earn-btn.les-earn-sidebar-active {
        background: linear-gradient(135deg, #ff9100 0%, #ff6d00 100%);
        border-color: rgba(255, 200, 120, 0.65);
        color: #fff;
        box-shadow: 0 4px 18px rgba(255, 109, 0, 0.45);
    }

    .desktop-layout-sidebar__earn-btn.les-earn-sidebar-active i {
        color: #fff;
    }

    .desktop-layout-sidebar__earn-btn.les-earn-sidebar-active:hover {
        background: linear-gradient(135deg, #ffa726 0%, #ff9100 100%);
        transform: translateY(-1px);
    }

    .desktop-layout-sidebar__link {
        display: flex;
        align-items: center;
        gap: 0.78rem;
        padding: 0.78rem 0.72rem;
        border-radius: 10px;
        color: #1d1d1d;
        text-decoration: none;
        font-size: 1.02rem;
        font-weight: 700;
        letter-spacing: 0.012em;
        line-height: 1.1;
        transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .desktop-layout-sidebar__link i {
        width: 20px;
        font-size: 1.06rem;
        text-align: center;
        color: #0e0d0d;
    }

    .desktop-layout-sidebar__link:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .desktop-layout-sidebar__link:hover i {
        color: #0e0d0d;
    }

    .desktop-layout-sidebar__link.active {
        background: #0e0d0d;
        color: #f1e300;
        box-shadow: 0 6px 18px rgba(14, 13, 13, 0.22);
    }

    .desktop-layout-sidebar__link.active i {
        color: #f1e300;
    }

    .desktop-layout-sidebar__dropdown {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .desktop-layout-sidebar__dropdown-toggle {
        width: 100%;
        border: none;
        cursor: pointer;
        font: inherit;
        font-weight: 700;
        text-align: left;
        position: relative;
        padding-right: 2rem;
    }

    .desktop-layout-sidebar__chevron {
        position: absolute;
        right: 0.72rem;
        top: 50%;
        transform: translateY(-50%);
        width: auto !important;
        font-size: 0.72rem !important;
        opacity: 0.75;
        transition: transform 0.2s ease;
    }

    .desktop-layout-sidebar__dropdown.is-open .desktop-layout-sidebar__chevron {
        transform: translateY(-50%) rotate(180deg);
    }

    .desktop-layout-sidebar__dropdown.is-open .desktop-layout-sidebar__dropdown-toggle {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .desktop-layout-sidebar__submenu {
        display: none;
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.15rem 0 0.35rem 0.55rem;
        margin: 0 0 0.15rem 0.55rem;
        border-left: 2px solid rgba(14, 13, 13, 0.18);
    }

    .desktop-layout-sidebar__dropdown.is-open .desktop-layout-sidebar__submenu {
        display: flex;
    }

    .desktop-layout-sidebar__sublink {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.58rem 0.7rem;
        border-radius: 8px;
        color: #292929;
        text-decoration: none;
        font-size: 0.92rem;
        font-weight: 650;
        letter-spacing: 0.01em;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .desktop-layout-sidebar__sublink i {
        width: 16px;
        font-size: 0.88rem;
        text-align: center;
        color: #0e0d0d;
        opacity: 0.85;
    }

    .desktop-layout-sidebar__sublink:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .desktop-layout-sidebar__sublink.active {
        background: #0e0d0d;
        color: #f1e300;
    }

    .desktop-layout-sidebar__sublink.active i {
        color: #f1e300;
        opacity: 1;
    }

    .desktop-bottom-player {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.1rem;
        padding: 0.6rem 1.1rem;
        z-index: 1305;
        background: linear-gradient(180deg, #2f3235 0%, #232628 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
        position: fixed;
    }

    .desktop-bottom-player__controls {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        min-width: 175px;
        z-index: 1;
    }

    .desktop-bottom-player__btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #19220f;
        background: var(--accent-color);
        transition: transform 0.15s ease, filter 0.2s ease;
    }

    .desktop-bottom-player__btn i {
        font-size: 0.95rem;
    }

    .desktop-bottom-player__btn:hover {
        filter: brightness(1.05);
    }

    .desktop-bottom-player__btn:active {
        transform: scale(0.95);
    }

    #desktop-player-pause {
        background: #f4f4f4;
        color: #1f2224;
    }

    .desktop-bottom-player:not(.playing) #desktop-player-pause {
        opacity: 0.6;
    }

    .desktop-bottom-player.playing #desktop-player-play {
        opacity: 0.6;
    }

    .desktop-bottom-player__meta {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        color: #fff;
        font-size: 0.92rem;
        max-width: min(62vw, 760px);
        pointer-events: none;
    }

    .desktop-bottom-player__live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #9ea3a8;
        box-shadow: 0 0 8px rgba(158, 163, 168, 0.55);
    }

    .desktop-bottom-player.playing .desktop-bottom-player__live-dot {
        background: #1cff63;
        box-shadow: 0 0 10px rgba(28, 255, 99, 0.7);
    }

    .desktop-bottom-player__status {
        color: #ff6161;
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .desktop-bottom-player.playing .desktop-bottom-player__status {
        color: #8cffaa;
    }

    .desktop-bottom-player__track {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        opacity: 0.92;
    }

    .desktop-bottom-player__volume {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        color: rgba(255, 255, 255, 0.9);
        min-width: 170px;
        justify-content: flex-end;
        z-index: 1;
    }

    .desktop-bottom-player__mute {
        width: 28px;
        height: 28px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.92);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: filter 0.2s ease, transform 0.15s ease;
    }

    .desktop-bottom-player__mute:hover {
        filter: brightness(1.08);
    }

    .desktop-bottom-player__mute:active {
        transform: scale(0.94);
    }

    .desktop-bottom-player__mute.is-muted {
        color: #ff7d7d;
    }

    #desktop-volume-slider {
        width: 110px;
        accent-color: var(--accent-color);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Listen Live Button (header player — scoped to .live-btn-container) */
.live-btn-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Desktop / default: promo + mobile player rows hidden */
.stream-dock-promo {
    display: none;
}

.btn-live__progress-bar {
    display: none;
}

.btn-live__desktop-only {
    display: contents;
}

.btn-live__mobile-only {
    display: none;
}

.live-btn-container .btn-live {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 1rem 0.35rem 0.4rem;
    border-radius: 100px;
    border: 1px solid rgba(205, 178, 42, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition:
        transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.25s ease;
    overflow: visible;
}

.live-btn-container .btn-live:hover {
    border-color: rgba(205, 178, 42, 0.48);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(205, 178, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.live-btn-container .btn-live:active {
    transform: translateY(0) scale(0.98);
}

.live-btn-container .btn-live:focus-visible {
    outline: 2px solid rgba(205, 178, 42, 0.85);
    outline-offset: 3px;
}

.live-btn-container .btn-live:focus:not(:focus-visible) {
    outline: none;
}

.live-btn-container .btn-live__play-halo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, #ddb837 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35) inset,
        0 2px 14px rgba(205, 178, 42, 0.35);
}

.live-btn-container .btn-live__play-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(41, 41, 41, 0.95) 0%, rgba(1, 40, 34, 0.98) 100%);
    color: var(--accent-color);
}

.live-btn-container .btn-live__icon {
    font-size: 0.62rem;
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(1px);
}

.live-btn-container .btn-live__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    line-height: 1.05;
    text-align: left;
    padding-right: 0.15rem;
}

.live-btn-container .btn-live__title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.live-btn-container .btn-live__subtitle {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.live-btn-container .btn-live.playing {
    border-color: rgba(0, 230, 118, 0.45);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow:
        0 4px 26px rgba(0, 200, 83, 0.25),
        0 0 0 1px rgba(0, 230, 118, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.live-btn-container .btn-live.playing .btn-live__play-halo {
    background: linear-gradient(145deg, #69f0ae 0%, #00c853 50%, #009624 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 2px 16px rgba(0, 200, 83, 0.45);
}

.live-btn-container .btn-live.playing .btn-live__play-inner {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.live-btn-container .live-indicator {
    position: absolute;
    top: -7px;
    right: -2px;
    background: linear-gradient(135deg, #ff5252 0%, #d50000 100%);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 6px;
    letter-spacing: 0.12em;
    z-index: 2;
    pointer-events: none;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(213, 0, 0, 0.45);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.live-btn-container:has(.btn-live.playing) .live-indicator {
    display: none;
}

.live-btn-container .live-indicator::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
    opacity: 0.55;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

/* Audio Visualizer */
.live-btn-container .audio-visualizer {
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    width: 12px;
    height: 12px;
}

.live-btn-container .btn-live.playing .btn-live__icon {
    display: none;
}

.live-btn-container .btn-live.playing .audio-visualizer {
    display: flex;
}

.live-btn-container .audio-visualizer span {
    display: inline-block;
    width: 2px;
    background-color: currentColor;
    border-radius: 1px;
    animation: bounce-bars 1.2s infinite ease-in-out;
}

.live-btn-container .audio-visualizer span:nth-child(1) { animation-delay: 0.0s; height: 100%; }
.live-btn-container .audio-visualizer span:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.live-btn-container .audio-visualizer span:nth-child(3) { animation-delay: 0.4s; height: 80%; }
.live-btn-container .audio-visualizer span:nth-child(4) { animation-delay: 0.6s; height: 40%; }

@keyframes bounce-bars {
    0%, 100% {
        transform: scaleY(0.4);
    }
    50% {
        transform: scaleY(1);
    }
}

/* About section CTA (was mis-classed as btn-live) */
.btn-learn-more {
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--accent-color);
    color: var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(205, 178, 42, 0.35);
}

/* ========================================
   HOME — About (modern block + waveform)
   ======================================== */

.about-modern {
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(ellipse 90% 70% at 15% 20%, rgba(205, 178, 42, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 70% 55% at 92% 85%, rgba(0, 200, 167, 0.12) 0%, transparent 48%),
        linear-gradient(168deg, #1d1d1d 0%, var(--primary-color) 42%, #1d1d1d 100%);
    border-block: 1px solid rgba(205, 178, 42, 0.1);
}

.about-modern__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.about-modern__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.35;
}

.about-modern__glow--1 {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: -18%;
    right: -8%;
    background: rgba(205, 178, 42, 0.12);
}

.about-modern__glow--2 {
    width: min(320px, 45vw);
    height: min(320px, 45vw);
    bottom: -12%;
    left: -5%;
    background: rgba(0, 180, 150, 0.2);
}

.about-modern__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 900px) {
    .about-modern__container {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

.about-modern__copy {
    max-width: 36rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-modern__topline {
    margin: 0 0 clamp(1.65rem, 4.5vw, 2.6rem);
    flex-shrink: 0;
}

.about-modern__listener-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.26rem 0.62rem 0.26rem 0.42rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(1, 46, 40, 0.45);
    border: 1px solid rgba(180, 210, 120, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.about-modern__live-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.45);
    animation: aboutLiveDotPulse 2.2s ease-out infinite;
}

@keyframes aboutLiveDotPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.about-modern__listener-text {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.about-modern__listener-num {
    color: var(--accent-color);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    min-width: 2.85ch;
    text-align: right;
    font-weight: 700;
    font-size: 0.95em;
    transition: color 0.25s ease;
}

.about-modern__listener-label {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 0.97em;
}

.about-modern__location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    margin: 0 0 1.15rem;
    line-height: 1.6;
    max-width: 36rem;
}

.about-modern__location i {
    margin-top: 0.1rem;
    color: rgba(205, 178, 42, 0.82);
    font-size: 0.78rem;
    opacity: 0.95;
}

.about-modern__kicker {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(180, 200, 120, 0.55);
    margin: 0 0 0.4rem;
}

.about-modern__title {
    font-family: 'Outfit', 'Montserrat', system-ui, sans-serif;
    color: var(--accent-color);
    margin: 0 0 clamp(1.05rem, 2.8vw, 1.5rem);
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
}

.about-modern__lead {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(0.98rem, 2vw, 1.125rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 clamp(1.35rem, 3.5vw, 2.1rem);
    line-height: 1.72;
    letter-spacing: 0.006em;
    max-width: 34rem;
}

.about-modern__body {
    font-size: clamp(0.94rem, 1.8vw, 1.02rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.85rem;
    line-height: 1.72;
    max-width: 34rem;
}

.about-modern .btn-learn-more.about-modern__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.62rem 1.35rem 0.62rem 1.5rem;
    border-radius: 999px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(41, 41, 41, 0.35) 100%
    );
    border: 1px solid rgba(205, 178, 42, 0.32);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 10px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.25s cubic-bezier(0.34, 1.15, 0.64, 1),
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.2s ease;
}

.about-modern .btn-learn-more.about-modern__cta:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(205, 178, 42, 0.55);
    background: linear-gradient(
        135deg,
        rgba(205, 178, 42, 0.2) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(1, 50, 44, 0.45) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 14px 40px rgba(0, 0, 0, 0.32),
        0 0 28px rgba(205, 178, 42, 0.12);
}

.about-modern .btn-learn-more.about-modern__cta:focus-visible {
    outline: 2px solid rgba(205, 178, 42, 0.85);
    outline-offset: 3px;
}

.about-modern__cta-icon {
    font-size: 0.72rem;
    opacity: 0.9;
    transition: transform 0.25s ease;
}

.about-modern .btn-learn-more.about-modern__cta:hover .about-modern__cta-icon {
    transform: translateX(4px);
}

.about-modern__visual {
    display: flex;
    justify-content: center;
}

@media (min-width: 900px) {
    .about-modern__visual {
        justify-content: flex-end;
    }
}

.about-modern__visual-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: min(100%, 520px);
    margin-inline: auto;
    padding: clamp(1rem, 3vw, 1.35rem);
    border-radius: clamp(18px, 2.5vw, 26px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.08),
        0 28px 64px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
    .about-modern__visual-card {
        display: grid;
        grid-template-columns: minmax(72px, 28%) minmax(0, 1fr);
        grid-template-rows: auto;
        align-items: center;
        gap: clamp(0.65rem, 2vw, 1.1rem);
    }
}

.about-modern__waveform {
    position: relative;
    order: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2px;
    width: 100%;
    height: 68px;
    padding: 0 0.15rem;
    pointer-events: none;
    opacity: 0.72;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .about-modern__waveform {
        order: unset;
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: min(240px, 32vw);
        min-height: 140px;
        max-height: 100%;
        align-self: center;
        gap: 3px;
        padding: 0 4%;
        opacity: 0.88;
    }
}

.about-modern__waveform span {
    flex: 1;
    min-width: 2px;
    max-width: 10px;
    height: 100%;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(
        to top,
        rgba(205, 178, 42, 0.15) 0%,
        var(--accent-color) 38%,
        rgba(255, 255, 255, 0.55) 100%
    );
    transform-origin: bottom center;
    transform: scaleY(0.22);
    animation: aboutWaveBar 0.85s ease-in-out infinite;
}

.about-modern__waveform span:nth-child(odd) {
    animation-duration: 0.72s;
}

.about-modern__waveform span:nth-child(3n) {
    animation-duration: 1.05s;
}

.about-modern__waveform span:nth-child(4n + 1) { animation-delay: 0s; }
.about-modern__waveform span:nth-child(4n + 2) { animation-delay: 0.12s; }
.about-modern__waveform span:nth-child(4n + 3) { animation-delay: 0.24s; }
.about-modern__waveform span:nth-child(4n + 4) { animation-delay: 0.08s; }
.about-modern__waveform span:nth-child(5) { animation-delay: 0.18s; }
.about-modern__waveform span:nth-child(7) { animation-delay: 0.3s; }
.about-modern__waveform span:nth-child(11) { animation-delay: 0.35s; }
.about-modern__waveform span:nth-child(13) { animation-delay: 0.05s; }
.about-modern__waveform span:nth-child(17) { animation-delay: 0.28s; }
.about-modern__waveform span:nth-child(19) { animation-delay: 0.15s; }
.about-modern__waveform span:nth-child(23) { animation-delay: 0.22s; }

@keyframes aboutWaveBar {
    0%, 100% { transform: scaleY(0.18); opacity: 0.75; }
    50% { transform: scaleY(1); opacity: 1; }
}

.about-modern__figure {
    position: relative;
    z-index: 1;
    order: 1;
    margin: 0;
    border-radius: clamp(14px, 2vw, 20px);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 18px 48px rgba(0, 0, 0, 0.45);
}

.about-modern__figure .about-modern__visual-accent {
    position: absolute;
    z-index: 2;
    top: 0.65rem;
    right: 0.65rem;
}

@media (min-width: 640px) {
    .about-modern__figure {
        order: unset;
        grid-column: 2;
        grid-row: 1;
    }
}

.about-modern__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.about-modern__visual-accent {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(205, 178, 42, 0.95) 0%, #ddb837 100%);
    opacity: 0.22;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .about-modern__live-dot {
        animation: none;
        box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.35);
    }

    .about-modern__waveform span {
        animation: none;
        transform: scaleY(0.55);
        opacity: 0.65;
    }
}

/* Listen & Earn Gamified Pill */
.reward-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 40px;
    padding: 0.3rem 1rem 0.3rem 0.3rem;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    margin-left: 0.5rem;
    position: relative;
    user-select: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.reward-pill:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.glow-icon {
    background: linear-gradient(135deg, #FFDF00, #FFA500);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 0.95rem;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.2), 0 0 10px rgba(255, 215, 0, 0.6);
    animation: pulse-coin 2s infinite ease-in-out;
}

@keyframes pulse-coin {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 215, 0, 0.9); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
}

.pill-text {
    color: #FFD700;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s ease;
}

/* Hero Sections */
.hero, .slider-container {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
}

.team-hero .hero-overlay {
    background:
        radial-gradient(circle at 20% 20%, rgba(205, 178, 42, 0.22) 0%, rgba(205, 178, 42, 0) 32%),
        linear-gradient(155deg, rgba(1, 40, 34, 0.84) 0%, rgba(41, 41, 41, 0.58) 48%, rgba(1, 28, 24, 0.82) 100%);
}

.team-hero__content {
    max-width: 900px;
}

.team-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.82rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 178, 42, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #fffed0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.team-hero__highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f8fffc;
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .team-hero__highlights span {
        font-size: 0.74rem;
    }
}

.slider-container {
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(41, 41, 41, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(1rem, 4vw, 2rem) 20px;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 0;
}

.hero h1 {
    font-size: var(--fs-h1);
    word-break: break-word;
    margin-bottom: 1rem;
    line-height: 1.3;
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.985);
    filter: blur(8px);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.99);
    filter: blur(6px);
}

.slide.active .hero h1,
.slide.active .hero p,
.slide.active .hero-play-wrapper {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.slide.active .hero h1 {
    animation: hero-text-title-in 950ms cubic-bezier(0.2, 0.7, 0, 1) 120ms both;
}

.slide.active .hero p {
    animation: hero-text-sub-in 1050ms cubic-bezier(0.2, 0.7, 0, 1) 300ms both;
}

.slide.slide-exiting .hero h1,
.slide.slide-exiting .hero p {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.slide.slide-exiting .hero h1 {
    animation: hero-text-title-out-type 620ms steps(18, end) both;
}

.slide.slide-exiting .hero p {
    animation: hero-text-sub-out-type 620ms steps(24, end) 80ms both;
}

.slide:nth-child(odd).active .hero h1 {
    animation-name: hero-text-title-in-left;
}

.slide:nth-child(odd).active .hero p {
    animation-name: hero-text-sub-in-left;
}

.slide:nth-child(even).active .hero h1 {
    animation-name: hero-text-title-in-right;
}

.slide:nth-child(even).active .hero p {
    animation-name: hero-text-sub-in-right;
}

@keyframes hero-text-title-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 40px, 0) scale(0.98);
        filter: blur(8px);
    }
    65% {
        opacity: 1;
        transform: translate3d(0, -3px, 0) scale(1.006);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-sub-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 32px, 0) scale(0.99);
        filter: blur(6px);
    }
    70% {
        opacity: 1;
        transform: translate3d(0, -2px, 0) scale(1.003);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-title-in-left {
    0% {
        opacity: 0;
        transform: translate3d(-56px, 34px, 0) scale(0.98);
        filter: blur(8px);
    }
    65% {
        opacity: 1;
        transform: translate3d(2px, -3px, 0) scale(1.006);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-sub-in-left {
    0% {
        opacity: 0;
        transform: translate3d(-44px, 28px, 0) scale(0.99);
        filter: blur(6px);
    }
    70% {
        opacity: 1;
        transform: translate3d(2px, -2px, 0) scale(1.003);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-title-in-right {
    0% {
        opacity: 0;
        transform: translate3d(56px, 34px, 0) scale(0.98);
        filter: blur(8px);
    }
    65% {
        opacity: 1;
        transform: translate3d(-2px, -3px, 0) scale(1.006);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-sub-in-right {
    0% {
        opacity: 0;
        transform: translate3d(44px, 28px, 0) scale(0.99);
        filter: blur(6px);
    }
    70% {
        opacity: 1;
        transform: translate3d(-2px, -2px, 0) scale(1.003);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-text-title-out-type {
    0% {
        opacity: 1;
        width: 100%;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        width: 0;
        filter: blur(3px);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes hero-text-sub-out-type {
    0% {
        opacity: 1;
        width: 100%;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        width: 0;
        filter: blur(2px);
        transform: translate3d(0, -3px, 0);
    }
}

/* Inner pages: compact hero banner (homepage uses .slider-container rules) */
@media (max-width: 600px) {
    header.hero {
        min-height: 48vh;
    }
}

@media (max-width: 768px) {
    .slider-container .hero-content {
        max-width: min(100%, 26rem);
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    }

    .slider-container .hero h1 {
        font-size: clamp(1.55rem, 6.5vw, 2.25rem);
        line-height: 1.15;
        margin-bottom: 0.65rem;
    }

    .slider-container .hero p {
        font-size: clamp(0.92rem, 3.4vw, 1.08rem);
        line-height: 1.45;
        margin-bottom: 1.35rem;
        max-width: 22rem;
    }

    .slider-container .hero-overlay {
        background: linear-gradient(
            165deg,
            rgba(1, 48, 42, 0.78) 0%,
            rgba(41, 41, 41, 0.52) 42%,
            rgba(1, 28, 24, 0.82) 100%
        );
    }
}

@media (max-width: 600px) {
    .hero-content {
        max-width: 95vw;
        padding-left: max(8px, env(safe-area-inset-left, 0px));
        padding-right: max(8px, env(safe-area-inset-right, 0px));
    }

    header.hero h1 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }

    header.hero p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
}

/* Hero player — glass “broadcast bar” (aligned with header live button) */
.hero-play-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: min(560px, 94vw);
    padding: 0.5rem 0.65rem 0.5rem 0.5rem;
    margin-left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    border-radius: 100px;
    border: 1px solid rgba(205, 178, 42, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-hero-play {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    background: transparent;
    position: relative;
    border-radius: 50%;
    transition: transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.btn-hero-play:focus-visible {
    outline: 2px solid rgba(205, 178, 42, 0.9);
    outline-offset: 4px;
}

.btn-hero-play:focus:not(:focus-visible) {
    outline: none;
}

.btn-hero-play:hover {
    transform: scale(1.05);
}

.btn-hero-play:active {
    transform: scale(0.97);
}

.btn-hero-play__halo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(56px, 11vw, 84px);
    height: clamp(56px, 11vw, 84px);
    border-radius: 50%;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 55%, #ddb837 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35) inset,
        0 4px 22px rgba(205, 178, 42, 0.38);
    position: relative;
}

.btn-hero-play__halo::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(205, 178, 42, 0.35);
    animation: hero-halo-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes hero-halo-pulse {
    0% { transform: scale(1); opacity: 0.65; }
    100% { transform: scale(1.35); opacity: 0; }
}

.btn-hero-play__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(41, 41, 41, 0.96) 0%, rgba(1, 36, 30, 0.98) 100%);
    color: var(--accent-color);
}

.btn-hero-play__icon {
    font-size: clamp(0.85rem, 2.2vw, 1.15rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(2px);
}

.btn-hero-play.playing .btn-hero-play__halo {
    background: linear-gradient(145deg, #69f0ae 0%, #00c853 50%, #009624 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28) inset,
        0 4px 26px rgba(0, 200, 83, 0.45);
}

.btn-hero-play.playing .btn-hero-play__halo::after {
    border-color: rgba(0, 230, 118, 0.4);
    animation-name: hero-halo-pulse-playing;
}

@keyframes hero-halo-pulse-playing {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.32); opacity: 0; }
}

.btn-hero-play.playing .btn-hero-play__inner {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.btn-hero-play.playing .btn-hero-play__icon {
    display: none;
}

.btn-hero-play .hero-audio-visualizer {
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    width: clamp(14px, 3.5vw, 18px);
    height: clamp(14px, 3.5vw, 18px);
}

.btn-hero-play.playing .hero-audio-visualizer {
    display: flex;
}

.btn-hero-play .hero-audio-visualizer span {
    display: inline-block;
    width: 3px;
    background-color: currentColor;
    border-radius: 1px;
    animation: bounce-bars 1.2s infinite ease-in-out;
}

.btn-hero-play .hero-audio-visualizer span:nth-child(1) { animation-delay: 0.0s; height: 100%; }
.btn-hero-play .hero-audio-visualizer span:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.btn-hero-play .hero-audio-visualizer span:nth-child(3) { animation-delay: 0.4s; height: 80%; }
.btn-hero-play .hero-audio-visualizer span:nth-child(4) { animation-delay: 0.6s; height: 40%; }

/* Hero Song Info */
.hero-song-info {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    flex: 1 1 140px;
    min-width: 0;
    margin: 0;
    padding: 0.35rem 1rem 0.35rem 1rem;
    text-align: left;
    max-width: 240px;
    opacity: 1 !important;
    z-index: 10;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    box-shadow: none;
}

.hero-now-playing {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    opacity: 1 !important;
}

.hero-song-title {
    font-size: clamp(0.88rem, 2.2vw, 1.05rem);
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.02em;
    animation: fadeInSong 0.5s ease;
    opacity: 1 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@keyframes fadeInSong {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.12rem;
    padding: 0.25rem 0.85rem 0.25rem 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.hero-cta-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.hero-cta-sub {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.1;
}

@media (max-width: 600px) {
    /* Horizontal pill: CTA never truncates; middle flexes and song title ellipsizes */
    .hero-play-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        align-self: center;
        border-radius: 100px;
        padding: 0.28rem 0.38rem 0.28rem 0.28rem;
        width: 100%;
        max-width: min(24rem, calc(100vw - 1.25rem));
        margin-left: auto;
        margin-right: auto;
    }

    .btn-hero-play {
        align-self: center;
        flex-shrink: 0;
    }

    .btn-hero-play__halo {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .btn-hero-play__halo::after {
        inset: -2px;
    }

    .btn-hero-play__icon {
        font-size: 0.72rem;
    }

    .btn-hero-play .hero-audio-visualizer {
        width: 12px;
        height: 12px;
    }

    .btn-hero-play .hero-audio-visualizer span {
        width: 2px;
    }

    .hero-song-info {
        align-items: center;
        text-align: center;
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        margin: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        border-top: none;
        padding: 0.12rem 0.35rem 0.12rem 0.42rem;
    }

    .hero-song-info .hero-now-playing,
    .hero-song-info .hero-song-title {
        width: 100%;
        text-align: center;
    }

    .hero-cta-copy {
        align-items: flex-start;
        text-align: left;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        border-top: none;
        padding: 0.12rem 0.36rem 0.12rem 0.4rem;
        margin-top: 0;
        flex-shrink: 0;
        flex-grow: 0;
        width: max-content;
        max-width: none;
    }

    .hero-cta-title {
        font-size: 0.52rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
    }

    .hero-cta-sub {
        font-size: 0.45rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
    }

    .hero-now-playing {
        font-size: 0.5rem;
        letter-spacing: 0.08em;
    }

    .hero-song-title {
        font-size: 0.78rem;
    }
}

/* Very narrow phones: same rules — CTA still must not clip */
@media (max-width: 380px) {
    .hero-play-wrapper {
        padding: 0.26rem 0.32rem 0.26rem 0.26rem;
        max-width: calc(100vw - 1rem);
    }

    .hero-cta-copy {
        padding-left: 0.32rem;
        padding-right: 0.28rem;
    }

    .btn-hero-play__halo {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .hero-cta-title {
        font-size: 0.5rem;
        letter-spacing: 0.04em;
    }

    .hero-cta-sub {
        font-size: 0.42rem;
        letter-spacing: 0.04em;
    }

    .hero-song-title {
        font-size: 0.72rem;
    }
}

/* Slider (Index Only) */
.slider-container {
    height: 85vh;
    min-height: 420px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    will-change: opacity, background-size, background-position;
}

/* Mobile / small tablet: stable viewport height, strong hero presence */
@media (max-width: 768px) {
    .slider-container {
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        min-height: 100dvh;
    }

    .slider-container .slide {
        animation: none !important;
        background-size: cover !important;
        background-position: center 28%;
    }

    .slider-container .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
}

@media (min-width: 769px) {
    .slider-container .hero-content {
        margin-top: clamp(1.5rem, 6vh, 4rem);
    }
}

.slide.active {
    opacity: 1;
    animation: hero-kenburns 5s ease-out forwards;
}

@keyframes hero-kenburns {
    0% {
        background-size: 100%;
        background-position: 50% 50%;
    }
    100% {
        background-size: 112%;
        background-position: 53% 47%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide,
    .slide.active {
        animation: none !important;
        background-size: cover;
        background-position: center;
    }

    .hero h1,
    .hero p,
    .slide.active .hero h1,
    .slide.active .hero p,
    .slide.slide-exiting .hero h1,
    .slide.slide-exiting .hero p {
        animation: none !important;
        opacity: 1;
        transform: none;
        filter: none;
        width: auto;
        overflow: visible;
        white-space: normal;
    }
}

/* Grid Sections (Shows, News, Team) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.team-card-img {
    height: 340px;
    background: linear-gradient(180deg, #f5f7f7 0%, #eef2f1 100%);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.team-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 0;
    filter: saturate(1.05) contrast(1.04);
}

.team-card-photo--vbox {
    object-position: center 20%;
}

.team-card-photo--wakini {
    object-position: center 18%;
}

.team-card {
    border-radius: 14px;
    border: 1px solid rgba(41, 41, 41, 0.08);
}

.team-card-content {
    padding-top: 1.2rem;
}

.team-card .card-tag {
    margin-bottom: 0.78rem;
    font-size: 0.69rem;
    letter-spacing: 0.06em;
}

.team-card__name {
    margin: 0;
    font-size: clamp(1.35rem, 2.3vw, 1.62rem);
    letter-spacing: 0.01em;
    color: #17201d;
}

.team-card__role {
    margin: 0.42rem 0 0.18rem;
    font-size: 0.96rem;
    font-weight: 700;
    color: #13483d;
}

.team-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    margin: 0 0 0.86rem;
    padding: 0.26rem 0.58rem;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.08);
    color: #24544a;
    font-size: 0.78rem;
    font-weight: 700;
}

.team-card__bio {
    margin: 0;
    color: #424d49;
    line-height: 1.68;
    font-size: 0.97rem;
}

.team-card__socials {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    margin-top: 1rem;
}

.team-card__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f3f2;
    color: #1a5549;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.team-card__socials a:hover {
    transform: translateY(-2px);
    background: #292929;
    color: #cdb22a;
}

.card-content {
    padding: 1.5rem;
}

.card-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card h3 {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

.btn-submit:hover {
    background-color: #025a4b;
}

/* Section Dividers & Backgrounds */
.section-relative {
    position: relative;
    z-index: 1;
}

.divider-top-slanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    transform: translateY(-99%);
}

.bg-pattern {
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-color: #f9f9f9;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.bg-accent-section {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.bg-warm-section {
    background-color: #FFFDE7;
}

.latest-news-bg {
    position: relative;
    z-index: 1;
}

.latest-news-bg .latest-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.753); /* dark green overlay, adjust opacity as needed */
    z-index: 2;
    pointer-events: none;
}

.latest-news-bg .container,
.latest-news-bg .bg-pattern {
    position: relative;
    z-index: 3;
}
/* Latest News Section Fixed Background */
.latest-news-bg {
    background: url('../img/news.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.latest-news-bg .bg-pattern {
    background: none;
}

/* ------------------------------------------------------------------
   Trending Kenyan songs (YouTube) — index
   ------------------------------------------------------------------ */

.trending-kenya {
    position: relative;
    overflow: hidden;
    color: #f0f4f8;
    background:
        radial-gradient(ellipse 120% 80% at 10% -20%, rgba(205, 178, 42, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 90% 60% at 100% 100%, rgba(229, 57, 53, 0.12) 0%, transparent 45%),
        linear-gradient(165deg, #0a0f12 0%, #121a22 38%, #0d1520 100%);
}

.trending-kenya__glow {
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 50% 40%, rgba(1, 82, 72, 0.35) 0%, transparent 55%);
    pointer-events: none;
    opacity: 0.9;
}

.trending-kenya .container {
    position: relative;
    z-index: 1;
}

.trending-kenya__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.25rem 1.5rem;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.trending-kenya__brand {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: #fff;
    background: linear-gradient(145deg, #ff0000 0%, #b71c1c 100%);
    box-shadow: 0 8px 28px rgba(229, 57, 53, 0.45);
}

.trending-kenya__intro {
    flex: 1 1 14rem;
    min-width: 0;
}

.trending-kenya__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(205, 178, 42, 0.85);
}

.trending-kenya__title {
    margin: 0 0 0.45rem;
    color: #fff;
    font-size: clamp(1.45rem, 4vw, 2.15rem);
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.trending-kenya__meta {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.trending-kenya__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.trending-kenya__loading {
    text-align: center;
    padding: 2.5rem 1rem;
    color: rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.trending-kenya__loading .gee-music-bars {
    margin: 0 auto 1rem;
}

.trending-kenya__error {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #ffcdd2;
    background: rgba(183, 28, 28, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trending-kenya__card {
    display: grid;
    grid-template-columns: auto 112px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 0.65rem 1rem 0.65rem 0.75rem;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.trending-kenya__card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(205, 178, 42, 0.22);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.trending-kenya__rank {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    min-width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.trending-kenya__thumb-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    line-height: 0;
}

.trending-kenya__thumb {
    width: 112px;
    height: 63px;
    object-fit: cover;
    display: block;
}

.trending-kenya__body {
    min-width: 0;
}

.trending-kenya__song {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-kenya__channel {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
}

.trending-kenya__stat {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.trending-kenya__views {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ff8a80;
}

.trending-kenya__views-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}

.trending-kenya__yt {
    font-size: 1.35rem;
    color: #ff0000;
    opacity: 0.9;
}

@media (max-width: 640px) {
    .trending-kenya__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .trending-kenya__card {
        grid-template-columns: auto 88px minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        gap: 0.5rem 0.65rem;
        align-items: start;
    }

    .trending-kenya__rank {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .trending-kenya__thumb-wrap {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .trending-kenya__thumb {
        width: 88px;
        height: 50px;
    }

    .trending-kenya__body {
        grid-column: 3;
        grid-row: 1;
    }

    .trending-kenya__stat {
        grid-column: 3;
        grid-row: 2;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.45rem;
        text-align: left;
    }

    .trending-kenya__yt {
        grid-column: 4;
        grid-row: 1 / span 2;
        align-self: center;
        font-size: 1.25rem;
    }
}

@media (max-width: 400px) {
    .trending-kenya__card {
        padding: 0.55rem 0.65rem;
    }

    .trending-kenya__song {
        font-size: 0.88rem;
    }
}

/* ------------------------------------------------------------------
   BambaSwap promo (home) — below trending chart
   ------------------------------------------------------------------ */

.bambaswap-promo {
    position: relative;
    overflow: hidden;
    background: linear-gradient(175deg, #eef6f4 0%, #e2ebe9 45%, #dce6e3 100%);
}

.bambaswap-promo__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 55% 40% at 0% 100%, rgba(41, 41, 41, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 100% 0%, rgba(205, 178, 42, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.bambaswap-promo__inner {
    position: relative;
    z-index: 1;
}

.bambaswap-promo__card {
    position: relative;
    border-radius: 22px;
    padding: clamp(1.35rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 251, 0.96) 100%);
    border: 1px solid rgba(41, 41, 41, 0.1);
    box-shadow:
        0 4px 6px rgba(41, 41, 41, 0.04),
        0 18px 48px rgba(41, 41, 41, 0.1);
    overflow: hidden;
}

.bambaswap-promo__shine {
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 120%;
    background: linear-gradient(120deg, transparent 0%, rgba(205, 178, 42, 0.06) 40%, transparent 70%);
    pointer-events: none;
    transform: rotate(-12deg);
}

.bambaswap-promo__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.25rem);
}

.bambaswap-promo__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    max-height: min(340px, 52vw);
    box-shadow:
        0 12px 40px rgba(41, 41, 41, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    background: linear-gradient(145deg, #e8f0ee, #d4e4df);
}

.bambaswap-promo__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bambaswap-promo__card:hover .bambaswap-promo__photo {
    transform: scale(1.03);
}

.bambaswap-promo__media-accent {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-color);
    background: linear-gradient(145deg, rgba(41, 41, 41, 0.92) 0%, rgba(1, 40, 34, 0.95) 100%);
    border: 1px solid rgba(205, 178, 42, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.bambaswap-promo__copy {
    flex: 1 1 16rem;
    min-width: 0;
}

.bambaswap-promo__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(41, 41, 41, 0.55);
}

.bambaswap-promo__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    color: var(--primary-color);
    line-height: 1.12;
}

.bambaswap-promo__lead {
    margin: 0 0 1rem;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.65;
    color: #3d4f4c;
    max-width: 42rem;
}

.bambaswap-promo__ticks {
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.bambaswap-promo__ticks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.78);
}

.bambaswap-promo__ticks i {
    color: #1b7a68;
    font-size: 1rem;
}

.bambaswap-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
}

.bambaswap-promo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bambaswap-promo__btn--primary {
    color: var(--primary-color);
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    border: 1px solid rgba(41, 41, 41, 0.12);
    box-shadow: 0 4px 18px rgba(205, 178, 42, 0.35);
}

.bambaswap-promo__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(41, 41, 41, 0.15);
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .bambaswap-promo__layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bambaswap-promo__media {
        max-height: none;
        aspect-ratio: 16 / 10;
        order: -1;
    }

    .bambaswap-promo__media-accent {
        left: 0.65rem;
        right: auto;
        transform: none;
        bottom: 0.65rem;
    }

    .bambaswap-promo__copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Bullet list: keep block centered but icon + lines left-aligned (no split icon/text) */
    .bambaswap-promo__ticks {
        align-items: stretch;
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .bambaswap-promo__ticks li {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .bambaswap-promo__ticks i {
        flex-shrink: 0;
        margin-top: 0.12em;
    }

    .bambaswap-promo__actions {
        justify-content: center;
        width: 100%;
    }

    .bambaswap-promo__btn {
        width: 100%;
        max-width: 20rem;
    }
}

/* ------------------------------------------------------------------
   Latest news hub (home) — over photo band
   ------------------------------------------------------------------ */

.news-hub__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 0.25rem;
}

.news-hub__titles {
    flex: 1 1 12rem;
    min-width: 0;
}

.news-hub__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(205, 178, 42, 0.85);
}

.news-hub__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.news-hub__all {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color) !important;
    background: linear-gradient(145deg, #fffef0 0%, var(--accent-color) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    float: none !important;
    margin: 0 !important;
}

.news-hub__all:hover {
    transform: translateX(3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    color: var(--primary-color) !important;
}

.latest-news-bg.news-hub .news-hub__grid {
    margin-top: clamp(1.25rem, 3vw, 2rem);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.latest-news-bg.news-hub .news-hub__card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.latest-news-bg.news-hub .news-hub__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.latest-news-bg.news-hub .news-hub__card-img {
    height: clamp(160px, 32vw, 200px);
    transition: transform 0.45s ease;
}

.latest-news-bg.news-hub .news-hub__card:hover .news-hub__card-img {
    transform: scale(1.05);
}

.latest-news-bg.news-hub .news-hub__card-body {
    padding: 1.25rem 1.35rem 1.4rem;
}

.latest-news-bg.news-hub .news-hub__tag {
    border-radius: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.latest-news-bg.news-hub .news-hub__card h3 {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--primary-color);
    margin: 0.35rem 0 0.5rem;
    line-height: 1.25;
}

.latest-news-bg.news-hub .news-hub__card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4a5560;
}

@media (max-width: 600px) {
    .news-hub__head {
        flex-direction: column;
        align-items: stretch;
    }

    .news-hub__title,
    .news-hub__eyebrow {
        text-align: center;
    }

    .news-hub__all {
        justify-content: center;
        width: 100%;
    }
}

/* View More Arrow Hover Effect */
.view-more-arrow {
    transition: color 0.3s, transform 0.3s;
}
.view-more-arrow:hover {
    color: var(--accent-color);
    transform: translateX(6px) scale(1.08);
}
.view-more-arrow i {
    transition: transform 0.3s;
}
.view-more-arrow:hover i {
    transform: translateX(3px);
}



/* Reviews Section - Legacy styles removed and consolidated above */

/* FAQ — modern accordion (requires .faq-bg-section.faq-modern on the section) */

.faq-bg-section.faq-modern {
    position: relative;
    padding: clamp(3.25rem, 8vw, 5.5rem) 0;
    overflow: hidden;
    color: var(--primary-color);
    background:
        radial-gradient(ellipse 85% 55% at 50% 0%, rgba(205, 178, 42, 0.14) 0%, transparent 52%),
        linear-gradient(180deg, #ffffff 0%, #f7faf9 55%, #f2f7f6 100%);
    border-top: 1px solid rgba(41, 41, 41, 0.06);
    border-bottom: 1px solid rgba(41, 41, 41, 0.06);
}

.faq-modern__accent-band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), rgba(241, 227, 0, 0.85), var(--accent-color), transparent);
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}

.faq-modern__noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

.faq-modern__inner {
    position: relative;
    z-index: 2;
}

.faq-modern__header {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    padding: 0 0.5rem;
}

.faq-modern__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(205, 178, 42, 0.22);
    border: 1px solid rgba(41, 41, 41, 0.12);
    margin-bottom: 1rem;
}

.faq-modern__title {
    color: var(--primary-color) !important;
    margin: 0 0 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.12;
    text-shadow: none;
}

.faq-modern__title-accent {
    background: linear-gradient(105deg, var(--primary-color) 0%, #cdb22a 38%, var(--accent-color) 62%, #ddb837 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: faqTitleShine 8s ease-in-out infinite;
}

@keyframes faqTitleShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .faq-modern__title-accent {
        animation: none;
        background: linear-gradient(105deg, var(--primary-color), #ddb837);
        background-size: 100%;
    }
}

.faq-modern__lede {
    margin: 0;
    font-size: clamp(0.92rem, 2.1vw, 1.05rem);
    line-height: 1.65;
    color: rgba(41, 41, 41, 0.68);
}

.faq-bg-section.faq-modern .faq-container {
    max-width: 44rem;
    margin: 0 auto;
}

.faq-modern__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-modern__item {
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    border-radius: clamp(14px, 2vw, 18px);
    border: 1px solid rgba(41, 41, 41, 0.1);
    background: #fff;
    box-shadow: 0 2px 12px rgba(41, 41, 41, 0.06), 0 8px 28px rgba(41, 41, 41, 0.05);
    overflow: hidden;
}

.faq-modern__item.active {
    grid-template-rows: auto 1fr;
    border-color: rgba(41, 41, 41, 0.18);
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(205, 178, 42, 0.45) inset,
        0 10px 36px rgba(41, 41, 41, 0.1);
}

.faq-modern__trigger.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 1.15rem 1.15rem 1.15rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: left;
    color: var(--primary-color);
    min-height: 3.25rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.faq-modern__trigger.faq-question:hover {
    background: rgba(41, 41, 41, 0.04);
}

.faq-modern__trigger.faq-question:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.faq-modern__q-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.98rem, 2.1vw, 1.12rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--primary-color);
}

.faq-modern__chev {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(205, 178, 42, 0.95) 0%, rgba(255, 236, 120, 0.9) 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(41, 41, 41, 0.08);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.faq-modern__chev i {
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
}

.faq-modern__item.active .faq-modern__chev i {
    transform: rotate(180deg);
}

.faq-modern__item.active .faq-modern__chev {
    box-shadow: 0 6px 20px rgba(205, 178, 42, 0.25);
}

.faq-modern__panel.faq-answer {
    overflow: hidden;
    min-height: 0;
    margin: 0;
    padding: 0;
    max-height: none;
    transition: none;
}

.faq-modern__panel-inner {
    padding: 0 1.25rem 1.2rem 1.25rem;
    border-top: 1px solid rgba(41, 41, 41, 0.08);
    background: linear-gradient(180deg, rgba(41, 41, 41, 0.03) 0%, transparent 100%);
}

.faq-modern__panel-inner p {
    margin: 0;
    font-size: clamp(0.9rem, 1.9vw, 1.02rem);
    line-height: 1.7;
    color: rgba(30, 45, 42, 0.88);
}

@media (max-width: 480px) {
    .faq-modern__trigger.faq-question {
        padding: 1rem 1rem 1rem 1.05rem;
    }

    .faq-modern__chev {
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 10px;
    }

    .faq-modern__panel-inner {
        padding: 0 1.05rem 1.05rem;
    }
}

/* Footer — site-wide */
.site-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    background:
        radial-gradient(ellipse 80% 55% at 50% 120%, rgba(205, 178, 42, 0.07) 0%, transparent 52%),
        linear-gradient(180deg, #0e0d0d 0%, var(--primary-color) 42%, #1d1d1d 100%);
    padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(1.5rem, 3vw, 2rem);
    overflow: hidden;
    border-top: 1px solid rgba(205, 178, 42, 0.12);
}

.site-footer__sheen {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.03) 48%, transparent 56%);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 1fr);
    gap: clamp(2rem, 4.5vw, 3.75rem);
    align-items: start;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 0;
    border-radius: 12px;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.site-footer__logo-link:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.site-footer__logo {
    height: clamp(48px, 8vw, 58px);
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.site-footer__tagline {
    margin: 0 0 1.35rem;
    max-width: 22rem;
    font-size: clamp(0.88rem, 1.8vw, 0.98rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-link:hover {
    color: var(--primary-color) !important;
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    border-color: rgba(205, 178, 42, 0.45);
    transform: translateY(-2px);
}

.site-footer__social-link i {
    font-size: 0.95rem;
}

.site-footer__heading {
    margin: 0 0 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(205, 178, 42, 0.88);
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.site-footer__list a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none !important;
    padding: 0.2rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__list a:hover {
    color: var(--accent-color) !important;
    transform: translateX(3px);
}

.site-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer__contact-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--primary-color);
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6b0 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.site-footer__contact-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    padding-top: 0.2rem;
    flex: 1;
    min-width: 0;
    text-align: left;
}

a.site-footer__contact-link {
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.2s ease;
}

a.site-footer__contact-link:hover {
    color: var(--accent-color) !important;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: 1.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__meta {
    min-width: 0;
}

.site-footer__legal {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.5;
}

.site-footer__credit-inline {
    color: rgba(255, 255, 255, 0.48);
    white-space: nowrap;
}

.site-footer__credit-link {
    color: rgba(255, 255, 255, 0.72) !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.site-footer__credit-link:hover {
    color: var(--accent-color) !important;
}

.site-footer__staff {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.75) !important;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.15);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-footer__staff:hover {
    color: var(--accent-color) !important;
    border-color: rgba(205, 178, 42, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

/* Footer accordion — mobile collapses; desktop stays open columns */
.site-footer__accordion {
    display: contents;
}

.site-footer__acc-trigger {
    display: none;
}

.site-footer__acc-panel {
    display: block;
}

.site-footer__acc-panel-inner {
    min-height: 0;
}

@media (max-width: 900px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__col {
        text-align: left;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
        text-align: left;
    }

    .site-footer__tagline {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .site-footer__social {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .site-footer__inner {
        text-align: left;
    }

    .site-footer__accordion {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
    }

    .site-footer__col.site-footer__acc-item {
        display: grid;
        grid-template-rows: auto 0fr;
        width: 100%;
        text-align: left;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.04);
        overflow: hidden;
        transition:
            grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1),
            border-color 0.3s ease,
            background 0.3s ease;
    }

    .site-footer__col.site-footer__acc-item.is-open {
        grid-template-rows: auto 1fr;
        border-color: rgba(205, 178, 42, 0.45);
        background: rgba(255, 255, 255, 0.07);
        box-shadow: 0 0 0 1px rgba(205, 178, 42, 0.2) inset;
    }

    .site-footer__heading--desktop {
        display: none;
    }

    .site-footer__acc-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        margin: 0;
        padding: 0.95rem 1rem 0.95rem 1.15rem;
        border: none;
        background: transparent;
        cursor: pointer;
        font: inherit;
        text-align: left;
        color: rgba(255, 255, 255, 0.95);
        min-height: 3.1rem;
        transition: background 0.2s ease;
    }

    .site-footer__acc-trigger:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .site-footer__acc-trigger:focus-visible {
        outline: 2px solid var(--accent-color);
        outline-offset: -2px;
    }

    .site-footer__acc-label {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(205, 178, 42, 0.95);
    }

    .site-footer__acc-chev.faq-modern__chev {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .site-footer__acc-item.is-open .site-footer__acc-chev i {
        transform: rotate(180deg);
    }

    .site-footer__acc-panel {
        overflow: hidden;
        min-height: 0;
    }

    .site-footer__acc-panel-inner {
        padding: 0 1.15rem 1.1rem;
    }

    .site-footer__list {
        gap: 0.15rem;
        padding-left: 0.65rem;
        border-left: 2px solid rgba(205, 178, 42, 0.35);
    }

    .site-footer__list a {
        display: flex;
        justify-content: flex-start;
        width: fit-content;
        max-width: 100%;
        padding: 0.45rem 0;
    }

    .site-footer__list a:hover {
        transform: none;
    }

    .site-footer__contact {
        width: 100%;
        align-items: stretch;
        gap: 0.55rem;
        padding-left: 0.65rem;
        border-left: 2px solid rgba(205, 178, 42, 0.35);
    }

    .site-footer__contact-row {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 1.75rem;
    }

    .site-footer__meta {
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .site-footer__legal {
        white-space: nowrap;
        font-size: clamp(0.68rem, 2.85vw, 0.82rem);
        letter-spacing: 0.01em;
    }
}

/* News desk — TOC sidebar + main column */
.news-desk {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 2.5rem 2.75rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.news-toc {
    position: sticky;
    top: 1.25rem;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.08);
    border-left: 4px solid var(--accent-color);
    padding: 1.35rem 0 1rem;
    max-height: calc(100vh - 7.5rem);
    overflow-y: auto;
    scrollbar-width: thin;
    min-width: 0;
    max-width: 100%;
}

.news-toc__header {
    padding: 0 1.25rem 1rem;
    border-bottom: 1px solid rgba(41, 41, 41, 0.08);
    margin-bottom: 0.5rem;
}

.news-toc__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.35rem;
}

.news-toc__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.news-toc__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.35rem 0;
    min-width: 0;
    max-width: 100%;
}

.news-toc__link.category-btn {
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    margin: 0;
    padding: 0.7rem 1.15rem;
    border: none;
    border-radius: 0;
    border-left: 3px solid transparent;
    background: transparent;
    color: #3a3a3a;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-toc__index {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(41, 41, 41, 0.35);
    font-variant-numeric: tabular-nums;
}

.news-toc__label {
    line-height: 1.25;
}

.news-toc__link.category-btn:hover {
    background: rgba(205, 178, 42, 0.12);
    color: var(--primary-color);
    border-left-color: var(--accent-color);
}

.news-toc__link.category-btn:hover .news-toc__index {
    color: var(--accent-color);
}

.news-toc__link.category-btn.active {
    background: var(--primary-color);
    color: #f1e300;
    border-left-color: #f1e300;
    font-weight: 600;
}

.news-toc__link.category-btn.active .news-toc__index {
    color: rgba(241, 227, 0, 0.65);
}

.news-desk__main {
    min-width: 0;
    max-width: 100%;
}

.news-desk .grid-container,
#news-grid.grid-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.news-filters {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.75rem;
    flex-wrap: wrap;
    padding-right: clamp(0.75rem, 3vw, 2rem);
}

.news-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
    margin-right: 0.35rem;
    padding: 0.45rem 0.25rem;
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.news-filter-toggle:hover {
    color: #0e0d0d;
    opacity: 0.82;
}

.news-filter-toggle:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.news-filter-toggle i {
    font-size: 0.95rem;
    color: inherit;
}

.news-filter-toggle.is-open {
    color: var(--primary-color);
}

.news-filter-panel {
    width: 100%;
}

.news-filter-panel[hidden] {
    display: none !important;
}

.news-filter-panel__inner {
    padding: 1.15rem 1.25rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-left: 4px solid var(--accent-color);
}

.news-filter-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-filter-panel__eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.news-filter-panel__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.news-filter-panel__reset {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(41, 41, 41, 0.15);
    background: transparent;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.news-filter-panel__reset:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #f1e300;
}

.news-filter-panel__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.news-sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #f7f8f9;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.news-sort-btn i {
    font-size: 0.85rem;
    color: rgba(41, 41, 41, 0.55);
    transition: color 0.2s ease;
}

.news-sort-btn:hover {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.14);
}

.news-sort-btn:hover i {
    color: var(--primary-color);
}

.news-sort-btn.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #f1e300;
}

.news-sort-btn.is-active i {
    color: #f1e300;
}

.news-desk__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--primary-color);
}

.news-desk__heading {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.news-desk__count {
    margin: 0.65rem 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.55);
    letter-spacing: 0.02em;
    text-align: center;
}

.news-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
    margin: 1.5rem 0 0.5rem;
    padding: 2.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px dashed rgba(41, 41, 41, 0.16);
}

.news-empty[hidden] {
    display: none !important;
}

.news-empty__emoji {
    font-size: 2.75rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.news-empty__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.news-empty__text {
    margin: 0;
    max-width: 22rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(41, 41, 41, 0.58);
}

.news-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(41, 41, 41, 0.1);
}

.news-pagination__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
}

.news-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(41, 41, 41, 0.15);
    background: #fff;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.news-pagination__btn:hover:not(:disabled) {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #0e0d0d;
}

.news-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.news-pagination__page {
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.55rem;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: #fff;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-pagination__page:hover {
    border-color: var(--accent-color);
    background: rgba(205, 178, 42, 0.15);
}

.news-pagination__page.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #f1e300;
}

.search-wrapper {
    position: relative;
    max-width: 22rem;
    margin: 0;
    width: 100%;
    flex: 1 1 14rem;
    isolation: isolate;
}

.search-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.search-wrapper input {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0.95rem 1.4rem 0.95rem 3.35rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -1px 0 rgba(41, 41, 41, 0.04),
        0 8px 28px rgba(41, 41, 41, 0.08),
        0 1px 2px rgba(41, 41, 41, 0.04);
    color: var(--primary-color);
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
    outline: none;
}

.search-wrapper input::placeholder {
    color: rgba(41, 41, 41, 0.45);
}

.search-wrapper input:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.85);
}

.search-wrapper input:focus {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(205, 178, 42, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 0 0 3px rgba(205, 178, 42, 0.18),
        0 12px 32px rgba(41, 41, 41, 0.1);
}

.search-wrapper i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: rgba(41, 41, 41, 0.48);
    font-size: 1.05rem;
    pointer-events: none;
    transition: color 0.25s ease;
}

.search-wrapper:focus-within i {
    color: var(--primary-color);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .search-wrapper input {
        background: rgba(255, 255, 255, 0.88);
    }
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.category-btn {
    padding: 0.55rem 1.05rem;
    border: 1px solid transparent;
    background: var(--accent-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: lowercase;
    letter-spacing: 0.01em;
    transition: var(--transition);
    color: #0e0d0d;
}

.category-btn:hover, .category-btn.active {
    background-color: #0e0d0d;
    color: #f1e300;
    border-color: #0e0d0d;
}

@media (max-width: 992px) {
    .news-desk {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
        overflow-x: clip;
    }

    .news-toc {
        position: relative;
        top: 0;
        max-height: none;
        padding: 1rem 0 0.75rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .news-toc__header {
        padding: 0 1rem 0.75rem;
    }

    .news-toc__nav {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        gap: 0.35rem;
        padding: 0.5rem 0.85rem 0.85rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .news-toc__link.category-btn {
        display: inline-flex;
        grid-template-columns: none;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        gap: 0.4rem;
        padding: 0.55rem 0.9rem;
        border-left: none;
        border-radius: 4px;
        background: rgba(205, 178, 42, 0.18);
        white-space: nowrap;
    }

    .news-toc__index {
        display: none;
    }

    .news-toc__link.category-btn:hover {
        border-left-color: transparent;
        background: rgba(205, 178, 42, 0.35);
    }

    .news-toc__link.category-btn.active {
        border-left-color: transparent;
        background: var(--primary-color);
        color: #f1e300;
    }

    .news-desk .grid-container,
    #news-grid.grid-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.25rem;
    }

    .news-desk .card,
    #news-grid .card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .news-pagination {
        width: 100%;
        max-width: 100%;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

@media (max-width: 576px) {
    .news-desk.section-padding {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .news-desk__heading {
        font-size: 1.2rem;
    }

    .news-desk__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Article Page Styles */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.article-content img {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
}

.share-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-section h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.share-btn.facebook { background-color: #1877F2; }
.share-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-btn.tiktok { background-color: #000000; }
.share-btn.x { background-color: #000000; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0.9;
}

.news-item {
    cursor: pointer;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-item:hover h3 {
    color: var(--primary-color);
}

/* About Page - Mission, Vision, Values */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.value-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary-color);
    color: white;
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item:hover i {
    color: white;
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

/* Founder Section */
.founder-section {
    margin-top: 6rem;
    padding: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.founder-img {
    flex: 0 0 350px;
    height: 450px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 10px 10px 0 var(--primary-color);
}

.founder-info {
    flex: 1;
}

.founder-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-info .title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.founder-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.founder-socials {
    display: flex;
    gap: 1.5rem;
}

.founder-socials a {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.founder-socials a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Get in Touch Section */
.get-in-touch {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    margin-top: 6rem;
}

.get-in-touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 41, 0.85);
    z-index: 1;
}

.get-in-touch .container {
    position: relative;
    z-index: 2;
}

.get-in-touch h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.get-in-touch p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* About page hero + touch section refresh (desktop + mobile consistent) */
.about-page-hero {
    min-height: clamp(18rem, 45vh, 24rem);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.about-page-hero__overlay {
    background: linear-gradient(165deg, rgba(41, 41, 41, 0.84) 0%, rgba(1, 37, 33, 0.6) 48%, rgba(1, 20, 18, 0.84) 100%);
}

.about-page-hero__content {
    max-width: 44rem;
    align-items: flex-start;
    text-align: left;
    padding: clamp(1.1rem, 3vw, 1.9rem) clamp(0.9rem, 3vw, 1.6rem);
}

.about-page-hero__tag {
    background: var(--accent-color);
    color: var(--primary-color);
    margin-bottom: 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
}

.about-page-hero__title {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.55rem;
    font-size: clamp(1.35rem, 4.2vw, 2.05rem);
    line-height: 1.16;
}

.about-page-hero p {
    font-size: clamp(0.94rem, 2.35vw, 1.06rem);
    margin-bottom: 0;
    max-width: 31rem;
}

.about-page-hero__subcopy {
    margin-top: 0.7rem;
    font-size: clamp(0.86rem, 2vw, 0.98rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
    max-width: 36rem;
}

.social-connect-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-connect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.social-connect-item i,
.social-connect-item svg {
    font-size: 2.2rem;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    padding: 18px; /* Added to keep SVG sizes appropriate within the background circle */
    box-sizing: border-box;
}

.social-connect-item:hover i,
.social-connect-item:hover svg {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-connect-item span {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-page-touch {
    background: #ffffff !important;
    color: var(--primary-color);
    margin-top: 2.75rem;
    padding: clamp(2.2rem, 6vw, 3rem) 0 clamp(2.05rem, 5vw, 2.6rem);
    border-top: 1px solid rgba(41, 41, 41, 0.1);
    border-bottom: 1px solid rgba(41, 41, 41, 0.1);
}

.about-page-touch .get-in-touch-overlay {
    display: none;
}

.about-page-touch h2 {
    color: var(--primary-color);
    font-size: clamp(1.45rem, 3.8vw, 2.05rem);
    margin-bottom: 0.85rem;
}

.about-page-touch p {
    color: rgba(41, 41, 41, 0.72);
    margin-bottom: 1.8rem;
    max-width: 29rem;
}

.about-page-touch .social-connect-item {
    color: var(--primary-color);
}

.about-page-touch .social-connect-item i,
.about-page-touch .social-connect-item svg {
    background: rgba(41, 41, 41, 0.08);
    border-color: rgba(41, 41, 41, 0.15);
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .get-in-touch {
        padding: 3rem 0;
    }
    .get-in-touch h2 {
        font-size: 1.5rem;
    }
    .get-in-touch p {
        font-size: 1rem;
    }
    .social-connect-grid {
        gap: 1rem;
    }
    .social-connect-item i,
    .social-connect-item svg {
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
        padding: 8px; /* scale down padding to match media query dimensions */
    }
    .social-connect-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .about-page-hero__content {
        padding: 1.2rem 1rem 1.35rem;
    }

    .about-page-hero__subcopy {
        margin-top: 0.55rem;
        font-size: 0.88rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: clamp(420px, 62vh, 580px);
    overflow: hidden;
}

.contact-hero__overlay {
    background:
        radial-gradient(circle at 15% 18%, rgba(205, 178, 42, 0.24) 0%, rgba(205, 178, 42, 0) 36%),
        radial-gradient(circle at 88% 88%, rgba(41, 41, 41, 0.4) 0%, rgba(41, 41, 41, 0) 45%),
        linear-gradient(145deg, rgba(1, 45, 38, 0.86) 0%, rgba(41, 41, 41, 0.62) 46%, rgba(1, 25, 21, 0.84) 100%);
}

.contact-hero__content {
    max-width: 860px;
    text-align: center;
    align-items: center;
    padding-top: clamp(5.5rem, 10vw, 8rem);
}

.contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 178, 42, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #fffecf;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 16ch;
    margin-bottom: 0.9rem;
    line-height: 1.1;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    max-width: 58ch;
    margin-bottom: 1.45rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: rgba(247, 255, 251, 0.92);
}

.contact-hero__quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

.contact-hero__quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #f4fffa;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contact-hero__quick-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;
    margin-top: 0.35rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #1db954 0%, #25d366 50%, #2ee57a 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(29, 185, 84, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-whatsapp-btn i {
    font-size: 1.15rem;
}

.contact-whatsapp-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 18px 34px rgba(29, 185, 84, 0.3);
}

.contact-form {
    position: relative;
    background: linear-gradient(155deg, #ffffff 0%, #f7fbfa 45%, #f1f7f5 100%);
    border: 1px solid rgba(41, 41, 41, 0.12);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(1, 44, 37, 0.12);
    padding: 2rem;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205, 178, 42, 0.25) 0%, rgba(205, 178, 42, 0) 72%);
    pointer-events: none;
}

.contact-form__intro {
    position: relative;
    z-index: 1;
    margin-bottom: 1.6rem;
}

.contact-form__kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.1);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.contact-form__intro h2 {
    margin: 0 0 0.6rem;
    color: var(--primary-color);
}

.contact-form__intro p {
    margin: 0;
    color: #4f5f5b;
    font-size: 0.96rem;
    line-height: 1.6;
    max-width: 45ch;
}

#contactForm {
    position: relative;
    z-index: 1;
}

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

.contact-form .form-group {
    margin-bottom: 1.05rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.48rem;
    color: #143c35;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.86rem 0.95rem;
    border: 1px solid rgba(41, 41, 41, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #102a25;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #7a8884;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(41, 41, 41, 0.55);
    box-shadow: 0 0 0 4px rgba(41, 41, 41, 0.14);
    transform: translateY(-1px);
}

.contact-form .form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn-submit {
    margin-top: 0.4rem;
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.95rem 1.2rem;
    background: linear-gradient(135deg, #292929 0%, #02574a 52%, #03705f 100%);
    color: #f7fff7;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(41, 41, 41, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(41, 41, 41, 0.28);
    filter: brightness(1.03);
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}

.contact-form .btn-submit:disabled {
    opacity: 0.78;
    cursor: not-allowed;
    transform: none;
}

.contact-form__message {
    margin-top: 0.95rem;
    padding: 0.75rem 0.85rem;
    display: none;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.info-card {
    position: relative;
    isolation: isolate;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbfa 52%, #f1f7f5 100%);
    padding: 1.35rem 1.45rem;
    border-radius: 18px;
    border: 1px solid rgba(41, 41, 41, 0.1);
    box-shadow: 0 12px 30px rgba(1, 38, 32, 0.09);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(205, 178, 42, 0.65) 0%, rgba(205, 178, 42, 0) 30%, rgba(41, 41, 41, 0.24) 100%);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(41, 41, 41, 0.2);
    box-shadow: 0 18px 34px rgba(1, 38, 32, 0.14);
}

.info-card i {
    font-size: 1.4rem;
    color: #f2fff8;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    background: linear-gradient(135deg, #292929 0%, #025347 50%, #03695b 100%);
    box-shadow: 0 8px 22px rgba(41, 41, 41, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-card h4 {
    margin: 0 0 0.3rem;
    color: var(--primary-color);
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}

.info-card p {
    margin: 0;
    color: #4a5b57;
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 31ch;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.12);
    background: linear-gradient(145deg, #ffffff 0%, #f8fbfa 55%, #eef5f3 100%);
    box-shadow: 0 22px 52px rgba(1, 38, 32, 0.13);
    margin-top: 4rem;
    padding: 1rem;
}

.map-container__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0.4rem 1rem;
}

.map-container__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(41, 41, 41, 0.1);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-container__title-wrap h3 {
    margin: 0.72rem 0 0.32rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.map-container__title-wrap p {
    margin: 0;
    color: #4a5b57;
    font-size: 0.96rem;
    max-width: 48ch;
}

.map-container__cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.66rem 0.95rem;
    border-radius: 11px;
    background: linear-gradient(135deg, #292929 0%, #025a4c 100%);
    color: #f4fff9;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(41, 41, 41, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.map-container__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(41, 41, 41, 0.28);
    filter: brightness(1.04);
}

.map-container__frame {
    height: clamp(300px, 44vw, 460px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 10px 26px rgba(1, 38, 32, 0.1);
}

.map-container__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.05) contrast(1.02);
}

/* ------------------------------------------------------------------
   Featured Shows (home) + show cards (shows page)
   ------------------------------------------------------------------ */

.featured-shows {
    position: relative;
    background: linear-gradient(165deg, #f5f8f7 0%, #eceff0 48%, #e3e8e7 100%);
    overflow: hidden;
}

.featured-shows::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 50% at 12% 15%, rgba(205, 178, 42, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 88% 85%, rgba(41, 41, 41, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.featured-shows .container {
    position: relative;
    z-index: 1;
}

.featured-shows__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.featured-shows__titles {
    flex: 1 1 12rem;
    min-width: 0;
}

.featured-shows__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    opacity: 0.72;
}

.featured-shows__title {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(1.6rem, 4.5vw, 2.35rem);
}

.featured-shows__all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--accent-color) !important;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(205, 178, 42, 0.28);
    box-shadow: 0 4px 20px rgba(41, 41, 41, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    float: none !important;
    margin: 0 !important;
}

.featured-shows__all-link:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(41, 41, 41, 0.2);
    filter: brightness(1.05);
}

.featured-shows__all-link i {
    font-size: 0.78em;
    transition: transform 0.22s ease;
}

.featured-shows__all-link:hover i {
    transform: translateX(3px);
}

.featured-shows .shows-grid,
.featured-shows__grid {
    margin-top: clamp(1.35rem, 4vw, 2.25rem);
}

/* Grid: works on home + /shows */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.2rem, 3.5vw, 2rem);
    margin-top: 2rem;
}

.show-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(41, 41, 41, 0.08);
    box-shadow:
        0 2px 4px rgba(41, 41, 41, 0.04),
        0 14px 36px rgba(41, 41, 41, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

.show-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 6px 12px rgba(41, 41, 41, 0.06),
        0 22px 48px rgba(41, 41, 41, 0.14);
}

.show-card__media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #292929 0%, #022a24 100%);
}

/* “Live” when current Nairobi day/time falls in data-live-* slot (see script.js) */
.show-card__live-badge {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.2rem 0.5rem 0.2rem 0.38rem;
    border-radius: 999px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #ff5252 0%, #c62828 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 2px 14px rgba(198, 40, 40, 0.5);
    pointer-events: none;
}

.show-card__live-badge[hidden] {
    display: none !important;
}

.show-card__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: showLiveDotPulse 1.35s ease-in-out infinite;
}

@keyframes showLiveDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.86); }
}

.show-card-img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 176px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.show-card:hover .show-card-img {
    transform: scale(1.045);
}

/* Time slot on image (modern overlay) */
.show-card__media .show-time-banner,
.show-time-banner--overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.65rem 1rem 0.7rem;
    margin: 0;
    background: linear-gradient(
        to top,
        rgba(41, 41, 41, 0.96) 0%,
        rgba(41, 41, 41, 0.72) 42%,
        rgba(41, 41, 41, 0.2) 78%,
        transparent 100%
    );
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.78rem, 2.2vw, 0.92rem);
    letter-spacing: 0.04em;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    border: none;
}

.show-card__media .show-time-banner::before,
.show-time-banner--overlay::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(205, 178, 42, 0.35);
    flex-shrink: 0;
}

/* Legacy: flat banner above image (older markup) */
.show-card > .show-time-banner:not(.show-time-banner--overlay) {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-card-body {
    padding: clamp(1.2rem, 3.2vw, 1.75rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.show-card__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.55rem;
    background: linear-gradient(135deg, #064a3e 0%, var(--primary-color) 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.show-card-body h3 {
    font-size: clamp(1.12rem, 2.6vw, 1.55rem);
    color: var(--primary-color);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.show-card__schedule {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(41, 41, 41, 0.62);
}

.show-card__schedule i {
    color: var(--primary-color);
    opacity: 0.55;
    font-size: 0.85em;
}

.show-card__excerpt {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4a5560;
    flex: 1;
}

.show-host {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding: 0.85rem 0.95rem;
    padding-bottom: 0;
    border-radius: 12px;
    background: rgba(41, 41, 41, 0.04);
    border: 1px solid rgba(41, 41, 41, 0.06);
}

.show-host img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(205, 178, 42, 0.35);
}

.show-host-info h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
}

.show-host-info span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(41, 41, 41, 0.5);
}

@media (max-width: 600px) {
    .featured-shows {
        padding: 2rem 0 1.6rem;
    }

    .featured-shows__titles {
        flex: 0 0 auto;
    }

    .featured-shows__head {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
    }

    .featured-shows__title {
        text-align: center;
        margin-bottom: 0.15rem;
    }

    .featured-shows__eyebrow {
        text-align: center;
        margin-bottom: 0.2rem;
    }

    .featured-shows__all-link {
        width: 100%;
        padding: 0.65rem 1rem;
    }

    .featured-shows .shows-grid,
    .featured-shows__grid {
        margin-top: 0.95rem;
    }

    .show-card-img {
        min-height: 160px;
        aspect-ratio: 16 / 11;
    }

    .show-card-body {
        padding: 1.15rem 1.1rem 1.2rem;
    }

    .show-host {
        margin-top: 0.75rem;
        padding: 0.75rem 0.85rem;
    }

    .show-card__excerpt {
        font-size: 0.86rem;
        margin-bottom: 0.85rem;
    }
}

/* Responsive Queries */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero__content {
        align-items: center;
        text-align: center;
        padding-top: clamp(5rem, 16vw, 7rem);
    }

    .contact-hero h1,
    .contact-hero p {
        max-width: 100%;
    }

    .contact-hero__quick-links {
        justify-content: center;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-container__top {
        flex-direction: column;
    }

    .map-container__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .founder-section {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-img {
        flex: 0 0 300px;
        width: 100%;
        max-width: 300px;
        height: 350px;
        margin: 0 auto;
    }
    
    .founder-socials {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        width: min(300px, 86vw);
        transform: translateX(-100%);
        background:
            radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
            linear-gradient(180deg, #f1e300 0%, var(--accent-color) 48%, #b89a22 100%);
        flex-direction: column;
        align-items: stretch;
        padding:
            max(0.75rem, env(safe-area-inset-top, 0px))
            1.15rem
            max(5.5rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem))
            max(1rem, env(safe-area-inset-left, 0px));
        gap: 0.25rem;
        text-align: left;
        transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.32s;
        visibility: hidden;
        z-index: 1000;
        box-shadow:
            4px 0 28px rgba(0, 0, 0, 0.22),
            1px 0 0 rgba(14, 13, 13, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0s;
    }

    .nav-drawer__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        margin: 0 0 0.35rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(14, 13, 13, 0.14);
        flex-shrink: 0;
    }

    .nav-drawer__logo {
        display: flex;
        align-items: center;
        min-width: 0;
        line-height: 0;
    }

    .nav-drawer__logo img {
        height: 56px;
        width: auto;
        max-width: min(170px, 58vw);
        object-fit: contain;
        display: block;
    }

    .nav-drawer__close {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 1px solid rgba(14, 13, 13, 0.2);
        border-radius: 12px;
        background: rgba(14, 13, 13, 0.08);
        color: #0e0d0d;
        font-size: 1.1rem;
        cursor: pointer;
        transition:
            background 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
    }

    .nav-drawer__close:hover {
        background: #0e0d0d;
        border-color: #0e0d0d;
        color: #f1e300;
    }

    .nav-drawer__close:focus-visible {
        outline: 2px solid #0e0d0d;
        outline-offset: 2px;
    }

    .nav-drawer__close:active {
        transform: scale(0.96);
    }

    .nav-links > li.nav-drawer__item {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links > li.nav-drawer__item > a {
        display: flex;
        align-items: center;
        font-family: 'Outfit', 'Inter', system-ui, sans-serif;
        font-size: 1.02rem;
        font-weight: 700;
        letter-spacing: 0.012em;
        color: #1d1d1d;
        text-decoration: none;
        padding: 0.78rem 1rem;
        border-radius: 12px;
        border-bottom: none;
        transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-links > li.nav-drawer__item > a:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .nav-links > li.nav-drawer__item > a.active {
        background: #0e0d0d;
        color: #f1e300;
        font-weight: 700;
        box-shadow: 0 6px 18px rgba(14, 13, 13, 0.22);
    }

    .nav-drawer__item--dropdown {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .nav-drawer__dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border: none;
        background: transparent;
        cursor: pointer;
        font-family: 'Outfit', 'Inter', system-ui, sans-serif;
        font-size: 1.02rem;
        font-weight: 700;
        letter-spacing: 0.012em;
        color: #1d1d1d;
        text-align: left;
        padding: 0.78rem 1rem;
        border-radius: 12px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-drawer__dropdown-toggle i {
        font-size: 0.75rem;
        opacity: 0.75;
        transition: transform 0.2s ease;
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__dropdown-toggle {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__dropdown-toggle i {
        transform: rotate(180deg);
    }

    .nav-drawer__submenu {
        display: none;
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.1rem 0 0.35rem 0.85rem;
        margin: 0 0 0.2rem 0.85rem;
        border-left: 2px solid rgba(14, 13, 13, 0.18);
    }

    .nav-drawer__item--dropdown.is-open .nav-drawer__submenu {
        display: flex;
    }

    .nav-drawer__submenu a {
        display: block;
        padding: 0.62rem 0.85rem;
        border-radius: 10px;
        color: #292929;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 650;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-drawer__submenu a:hover {
        background: rgba(14, 13, 13, 0.1);
        color: #0e0d0d;
    }

    .nav-drawer__submenu a.active {
        background: #0e0d0d;
        color: #f1e300;
        font-weight: 700;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    /* One close control: hide hamburger while drawer is open (avoids duplicate X) */
    .nav-container.nav-drawer-open .menu-toggle {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav-container {
        position: relative;
    }

    /* Mobile: full-width dock — green promo strip + charcoal player (reference UI) */
    .live-btn-container {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 990;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        pointer-events: none;
        background: transparent;
        box-shadow: none;
    }

    .stream-dock-promo {
        position: absolute;
        right: max(0.55rem, env(safe-area-inset-right, 0px));
        bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
        z-index: 4;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: 0;
        pointer-events: none;
    }

    .stream-dock-promo.stream-dock-promo--minimized {
        bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
        z-index: 6;
    }

    .stream-dock-install {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        margin: 0;
        padding: 0.55rem 0.85rem 0.55rem 0.75rem;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #0a0a0a;
        background: #cdb22a;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
        transition: filter 0.2s ease, background 0.2s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(205, 178, 42, 0.35);
        pointer-events: auto;
    }

    .stream-dock-install i {
        font-size: 0.85rem;
    }

    .stream-dock-install:hover {
        filter: brightness(1.05);
    }

    .stream-dock-install:active {
        filter: brightness(0.96);
    }

    .stream-dock-install.stream-dock-install--minimized {
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.35),
            0 0 0 2px rgba(205, 178, 42, 0.55);
        animation: installDockPulse 1.6s ease-in-out infinite;
    }

    @keyframes installDockPulse {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-1px); }
    }

    .live-btn-container .btn-live {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 0;
        pointer-events: auto;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: #2b2b2d;
        box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: hidden;
        text-align: left;
    }

    .live-btn-container .btn-live:hover {
        transform: none;
        filter: brightness(1.03);
    }

    .live-btn-container .btn-live:active {
        transform: none;
        filter: brightness(0.97);
    }

    .btn-live__desktop-only {
        display: none !important;
    }

    .btn-live__progress-bar {
        display: block;
        position: relative;
        width: 100%;
        height: 3px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.14);
    }

    .btn-live__progress-fill {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 34%;
        max-width: 100%;
        background: #fff;
        border-radius: 0 2px 2px 0;
        transform-origin: left center;
        transition: width 0.35s ease;
    }

    .live-btn-container .btn-live.playing .btn-live__progress-fill {
        animation: streamDockProgressPulse 2.4s ease-in-out infinite;
    }

    @keyframes streamDockProgressPulse {
        0%, 100% { width: 30%; opacity: 0.95; }
        50% { width: 46%; opacity: 1; }
    }

    @media (prefers-reduced-motion: reduce) {
        .live-btn-container .btn-live.playing .btn-live__progress-fill {
            animation: none;
            width: 36%;
        }
    }

    .btn-live__mobile-only {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.55rem calc(6.3rem + env(safe-area-inset-right, 0px)) calc(0.45rem + env(safe-area-inset-bottom, 0px)) max(0.65rem, env(safe-area-inset-left, 0px));
        min-height: 3.35rem;
    }

    .btn-live__thumb-wrap {
        flex-shrink: 0;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        background:
            radial-gradient(circle at center, #111 0%, #1b1b1b 26%, #090909 58%, #262626 100%);
        border: 2px solid rgba(255, 255, 255, 0.18);
        box-shadow:
            0 2px 10px rgba(0, 0, 0, 0.35),
            inset 0 0 0 2px rgba(255, 255, 255, 0.06);
    }

    .btn-live__thumb-wrap::before {
        content: '';
        position: absolute;
        inset: 3px;
        border-radius: 50%;
        background:
            radial-gradient(circle at center, #151515 0%, #0e0e0e 35%, #1a1a1a 64%, #070707 100%),
            repeating-radial-gradient(
                circle at center,
                rgba(255, 255, 255, 0.055) 0 1px,
                rgba(0, 0, 0, 0.12) 1px 2px
            );
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .btn-live__thumb-wrap::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        background: #f1f1f1;
        box-shadow: 0 0 0 3px #2b2b2d, 0 0 0 4px rgba(255, 255, 255, 0.18);
    }

    .live-btn-container .btn-live.playing .btn-live__thumb-wrap {
        animation: deckSpin 1.3s linear infinite;
    }

    @keyframes deckSpin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .btn-live__dock-meta {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.12rem;
    }

    .btn-live__dock-label {
        font-family: 'Outfit', 'Inter', system-ui, sans-serif;
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
    }

    .btn-live__dock-meta .dock-now-playing,
    .btn-live__dock-meta .hero-song-title {
        font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
        color: #fff;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-live__dock-controls {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        padding-left: 0.15rem;
        color: #fff;
        font-size: 1.52rem;
    }

    .btn-live__dock-ic {
        opacity: 0.38;
        transition: opacity 0.2s ease;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    }

    .btn-live__dock-volume {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.72rem;
        height: 1.72rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(205, 178, 42, 0.28);
    }

    .btn-live__dock-volume .btn-live__dock-ic {
        opacity: 0.95;
        font-size: 0.78em;
    }

    .btn-live__dock-volume.is-muted .btn-live__dock-ic {
        color: #ff9f9f;
    }

    .live-btn-container .btn-live:not(.playing) .btn-live__dock-ic-play {
        opacity: 1;
    }

    .live-btn-container .btn-live:not(.playing) .btn-live__dock-ic-pause {
        opacity: 0.32;
    }

    .live-btn-container .btn-live.playing .btn-live__dock-ic-pause {
        opacity: 1;
    }

    .live-btn-container .btn-live.playing .btn-live__dock-ic-play {
        opacity: 0.32;
    }

    .live-btn-container .live-indicator {
        display: none !important;
    }

    .live-btn-container .btn-live.playing {
        background: #2b2b2d;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
    }

    /* Earn mode: same dock layout — only swap charcoal (#2b2b2d) for BambaSwap orange */
    .live-btn-container .btn-live.earn-mode,
    .live-btn-container .btn-live.earn-mode.playing {
        background: #3d2810 !important;
        border: none !important;
        border-top: 1px solid rgba(255, 145, 0, 0.32) !important;
        border-radius: 0 !important;
        box-shadow: 0 -8px 28px rgba(255, 120, 0, 0.22) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        filter: none !important;
    }

    .live-btn-container .btn-live.earn-mode:hover,
    .live-btn-container .btn-live.earn-mode:active {
        transform: none !important;
        filter: brightness(1.03) !important;
    }

    .live-btn-container .btn-live.earn-mode .btn-live__thumb-wrap::after {
        box-shadow:
            0 0 0 3px #3d2810,
            0 0 0 4px rgba(255, 145, 0, 0.28) !important;
    }

    body {
        padding-bottom: calc(4.95rem + env(safe-area-inset-bottom, 0px));
    }

    /* Hide original account/user-info buttons in navbar on mobile */
    .nav-container > .reward-pill,
    .nav-container > .user-info {
        display: none !important;
    }

    /* Show auth section inside hamburger menu on mobile */
    .nav-mobile-auth {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-top: auto;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        list-style: none;
        flex-shrink: 0;
    }

    .nav-mobile-auth .reward-pill {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0.75rem 1.1rem;
        border-radius: 14px;
        border: 1px solid rgba(205, 178, 42, 0.35);
        background: linear-gradient(135deg, rgba(205, 178, 42, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        gap: 0.55rem;
    }

    .nav-mobile-auth .glow-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .nav-mobile-auth .pill-text {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }

    .nav-mobile-auth .user-info {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .founder-section {
        padding: 1rem;
        gap: 1.2rem;
    }
    .founder-img {
        flex: 0 0 180px;
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 0 auto 1rem auto;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(41, 41, 41,0.12);
        background-size: cover;
        background-position: center;
    }
    .founder-info h2 {
        font-size: 1.3rem;
    }
    .founder-info .title {
        font-size: 1rem;
    }
    .founder-socials {
        gap: 0.7rem;
        margin-top: 1rem;
    }
    .founder-socials a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ========================================
   AUTHENTICATION MODAL
   ======================================== */

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 28, 24, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: authFadeIn 0.28s ease;
}

.auth-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 440px;
    max-height: min(92vh, 720px);
    background: #f7f9f8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    animation: authSlideUp 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

/* Branded header */
.auth-modal-brand {
    position: relative;
    text-align: center;
    padding: 1.75rem 1.5rem 1.35rem;
    background: linear-gradient(155deg, #014a3f 0%, #292929 45%, #012820 100%);
    color: #fff;
}

.auth-modal-brand::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.auth-modal-brand__logo {
    display: block;
    margin: 0 auto 0.65rem;
    height: auto;
    max-width: 108px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.auth-modal-brand__tagline {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
}

.auth-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.auth-modal-close i {
    font-size: 1rem;
}

.auth-modal-body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* Pill tabs */
.auth-tabs {
    display: flex;
    gap: 0.35rem;
    margin: 1.1rem 1.25rem 0;
    padding: 0.3rem;
    background: #e8eeec;
    border-radius: 12px;
}

.auth-modal-content:has(#forgot-password-container.active) .auth-tabs,
.auth-modal-content:has(#reset-password-container.active) .auth-tabs {
    display: none;
}

.auth-tab {
    flex: 1;
    padding: 0.65rem 0.75rem;
    border: none;
    border-radius: 9px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #5a6b66;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.auth-tab.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(41, 41, 41, 0.12);
}

.auth-tab:hover:not(.active) {
    color: var(--primary-color);
}

/* Form panels */
.auth-form-container {
    display: none;
    padding: 1.15rem 1.35rem 1.5rem;
}

.auth-form-container.active {
    display: block;
    animation: authPanelIn 0.28s ease;
}

.auth-header {
    margin-bottom: 1.15rem;
}

.auth-header h2 {
    margin: 0 0 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d2e28;
    letter-spacing: -0.02em;
}

.auth-header p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #5c6d68;
}

.auth-header--icon {
    text-align: center;
}

.auth-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(41, 41, 41, 0.12), rgba(41, 41, 41, 0.06));
    color: var(--primary-color);
    font-size: 1.15rem;
}

.auth-header--icon h2 {
    font-size: 1.25rem;
}

/* Form layout */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d4a44;
    letter-spacing: 0.01em;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 0.9rem;
    font-size: 0.88rem;
    color: #7a8f89;
    pointer-events: none;
    transition: color 0.2s ease;
}

.auth-input-wrap input {
    width: 100%;
    padding: 0.72rem 0.9rem 0.72rem 2.55rem;
    border: 1.5px solid #d4ddd9;
    border-radius: 11px;
    font-size: 0.94rem;
    font-family: inherit;
    color: #0d2e28;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input-wrap--password input {
    padding-right: 2.75rem;
}

.auth-input-wrap input::placeholder {
    color: #9aaba5;
}

.auth-input-wrap input:hover {
    border-color: #b8c9c3;
}

.auth-input-wrap input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(41, 41, 41, 0.12);
}

.auth-input-wrap:focus-within .auth-input-icon {
    color: var(--primary-color);
}

.auth-input-action {
    position: absolute;
    right: 0.35rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #7a8f89;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.auth-input-action:hover {
    color: var(--primary-color);
    background: rgba(41, 41, 41, 0.06);
}

.auth-field-hint {
    font-size: 0.76rem;
    color: #7a8f89;
    margin-top: -0.15rem;
}

/* Legacy aliases (other pages / JS) */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #2d4a44; }
.form-group input {
    width: 100%;
    padding: 0.72rem 0.9rem;
    border: 1.5px solid #d4ddd9;
    border-radius: 11px;
    font-size: 0.94rem;
    background: #fff;
}
.password-input-wrapper { position: relative; }
.password-input-wrapper input { padding-right: 2.75rem; }
.toggle-password {
    position: absolute;
    right: 0.35rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #7a8f89;
    cursor: pointer;
}
.form-hint { font-size: 0.76rem; color: #7a8f89; }

/* Submit */
.btn-auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d2e28;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e8e600 100%);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(205, 178, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(205, 178, 42, 0.45);
    filter: brightness(1.03);
}

.btn-auth-submit:active {
    transform: translateY(0);
}

.btn-auth-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.btn-auth-submit i {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Messages & links */
.auth-form-error {
    display: none;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    text-align: center;
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecdca;
}

.auth-form-error--banner {
    display: none;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    text-align: left;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff5f5 0%, #fef3f2 100%);
    border: 1px solid #fecdca;
    box-shadow: 0 4px 14px rgba(180, 35, 24, 0.08);
    animation: authAlertIn 0.32s ease;
}

.auth-form-error__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fee4e2;
    color: #d92d20;
    font-size: 0.95rem;
}

.auth-form-error__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.auth-form-error__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #912018;
    line-height: 1.3;
}

.auth-form-error__text {
    font-size: 0.82rem;
    font-weight: 500;
    color: #b42318;
    line-height: 1.45;
}

.auth-field--error label {
    color: #b42318;
}

.auth-field--error .auth-input-wrap input {
    border-color: #f04438;
    background: #fffbfa;
    box-shadow: 0 0 0 3px rgba(240, 68, 56, 0.12);
}

.auth-field--error .auth-input-icon {
    color: #d92d20;
}

@keyframes authAlertIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-success {
    display: none;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    text-align: center;
    color: #027a48;
    background: #ecfdf3;
    border: 1px solid #abefc6;
}

.auth-forgot-password-text {
    margin: -0.35rem 0 0;
    text-align: right;
    font-size: 0.82rem;
}

.auth-forgot-password-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-forgot-password-text a:hover {
    text-decoration: underline;
}

.auth-switch-text {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.86rem;
    color: #5c6d68;
}

.auth-switch-text--back {
    margin-top: 1.1rem;
}

.auth-switch-text a,
.auth-create-link,
#back-to-login {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-switch-text a:hover,
.auth-create-link:hover,
#back-to-login:hover {
    text-decoration: underline;
}

#back-to-login i {
    margin-right: 0.35rem;
    font-size: 0.8rem;
}

@keyframes authFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes authSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes authPanelIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .auth-modal {
        padding: 0.65rem;
        align-items: flex-end;
    }

    .auth-modal-content {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 16px 16px;
    }

    .auth-form-container {
        padding: 1rem 1.1rem 1.35rem;
    }

    .auth-form-row,
    .form-row {
        grid-template-columns: 1fr;
    }

    .auth-header h2 {
        font-size: 1.22rem;
    }
}

@media (max-width: 480px) {
    .auth-tabs {
        margin: 0.9rem 1rem 0;
    }

    .auth-modal-brand {
        padding: 1.5rem 1.25rem 1.15rem;
    }
}

@media (min-width: 993px) {
    .auth-modal-content {
        max-height: min(90vh, 760px);
    }

    .auth-modal-body {
        flex: 1 1 auto;
        min-height: 0;
        max-height: calc(90vh - 11rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .auth-form-container {
        padding-bottom: 1.75rem;
    }
}

/* ========================================
   LISTEN EARN SWAP – Logged-in Nav
   ======================================== */

.user-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.8rem;
}

.user-email {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: #ff4444;
    color: #fff;
    transform: scale(1.1);
}

.btn-logout i {
    font-size: 1rem;
}

/* ========================================
   LISTEN EARN SWAP – Dashboard Widget
   ======================================== */

.les-hidden {
    display: none !important;
}

.les-dashboard {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    background: linear-gradient(145deg, #292929 0%, #333333 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(205, 178, 42, 0.1);
    z-index: 9000;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.les-dashboard.les-hidden {
    display: none;
}

.les-dashboard.les-collapsed .les-body {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.les-dashboard.les-collapsed .les-chevron {
    transform: rotate(180deg);
}

.les-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    user-select: none;
    transition: background 0.3s ease;
}

.les-header:hover {
    background: rgba(0, 0, 0, 0.3);
}

.les-header-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.les-header-left i {
    font-size: 1.1rem;
}

.les-chevron {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.les-body {
    padding: 1.25rem;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.les-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.les-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.les-stat-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 32px;
    text-align: center;
}

.les-stat-content {
    display: flex;
    flex-direction: column;
}

.les-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.les-stat-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.les-rate-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(205, 178, 42, 0.1);
    border: 1px solid rgba(205, 178, 42, 0.15);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.les-rate-info i {
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.les-activate-btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.les-activate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 178, 42, 0.3);
}

.les-activate-btn.les-deactivate {
    background: rgba(255, 68, 68, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.les-activate-btn.les-deactivate:hover {
    background: #ff4444;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
}

.les-active-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    animation: earnPulse 2s infinite;
}

.les-active-indicator.les-hidden {
    display: none;
}

/* ---- Swap Button ---- */
.les-swap-wrapper {
    position: relative;
    margin-top: 0.75rem;
}

.les-swap-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.les-swap-btn.les-swap-locked {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.les-swap-btn.les-swap-ready {
    background: linear-gradient(135deg, #ff9100, #ff6d00);
    color: #fff;
    border: 1px solid rgba(255, 145, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 145, 0, 0.25);
}

.les-swap-btn.les-swap-ready:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 145, 0, 0.4);
}

.les-swap-menu {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255, 145, 0, 0.3);
    border-radius: 10px;
    padding: 0.4rem;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: swapMenuIn 0.2s ease;
}

.les-swap-menu.les-hidden {
    display: none;
}

@keyframes swapMenuIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.les-swap-option {
    width: 100%;
    padding: 0.7rem 1rem;
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s;
}

.les-swap-option:hover {
    background: rgba(255, 145, 0, 0.15);
}

.les-swap-option i {
    color: #ff9100;
    width: 1.2rem;
    text-align: center;
}

/* Phone verify banner */
.les-phone-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 145, 0, 0.12);
    border: 1px solid rgba(255, 145, 0, 0.35);
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.les-phone-banner i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #ff9100;
}

.les-phone-banner > span {
    flex: 1;
    min-width: 0;
}

.les-phone-banner__btn {
    flex-shrink: 0;
    margin-left: auto;
    padding: 0.45rem 0.75rem;
    border: none;
    border-radius: 6px;
    background: #ff9100;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.les-verify-inline {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.65rem;
    border-radius: 8px;
    border: 1px dashed rgba(255, 145, 0, 0.5);
    background: transparent;
    color: #ff9100;
    font-weight: 600;
    cursor: pointer;
}

.les-dashboard-footer {
    margin-top: 1rem;
    padding: 0.85rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.les-dashboard-account {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.les-dashboard-account__avatar {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(205, 178, 42, 0.35) 0%, rgba(41, 41, 41, 0.9) 100%);
    border: 1px solid rgba(205, 178, 42, 0.35);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    color: var(--accent-color);
    font-size: 0.85rem;
}

.les-dashboard-account__meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.les-dashboard-account__label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.les-dashboard-email {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    word-break: break-all;
    line-height: 1.25;
}

.les-dashboard-logout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.09) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition:
        transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 4px 14px rgba(0, 0, 0, 0.18);
}

.les-dashboard-logout__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 8px;
    background: rgba(255, 120, 100, 0.15);
    border: 1px solid rgba(255, 140, 120, 0.28);
    color: #ffb4a8;
    font-size: 0.72rem;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.les-dashboard-logout__text {
    line-height: 1;
}

.les-dashboard-logout:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 160, 140, 0.45);
    background: linear-gradient(
        165deg,
        rgba(255, 120, 100, 0.22) 0%,
        rgba(200, 60, 50, 0.12) 100%
    );
    color: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 8px 22px rgba(220, 70, 55, 0.28);
}

.les-dashboard-logout:hover .les-dashboard-logout__icon {
    background: rgba(255, 90, 70, 0.35);
    border-color: rgba(255, 180, 160, 0.5);
    color: #fff;
    transform: translateX(2px);
}

.les-dashboard-logout:active {
    transform: translateY(0) scale(0.98);
}

.les-dashboard-logout:focus-visible {
    outline: 2px solid rgba(255, 145, 0, 0.75);
    outline-offset: 2px;
}

/* Listen Earn modals */
.les-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.les-modal.les-hidden {
    display: none !important;
}

.les-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.les-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    max-height: min(90vh, 90dvh);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #1a1a2e;
    border: 1px solid rgba(255, 145, 0, 0.35);
    border-radius: 12px;
    padding: 1.25rem 1.25rem 1.5rem;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.les-modal__close {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    touch-action: manipulation;
}

.les-modal__panel h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
}

.les-modal__lead {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
}

.les-modal__panel label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
}

.les-modal__input {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 16px;
    touch-action: manipulation;
}

.les-modal__btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.les-modal__btn--primary {
    background: linear-gradient(135deg, #ff9100, #ff6d00);
    color: #1a1a2e;
}

.les-modal__btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.les-modal__hint {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem;
}

.les-modal__email-target {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(205, 178, 42, 0.2);
    border-radius: 10px;
}

.les-modal__email-target.les-hidden {
    display: none;
}

.les-modal__email-target i {
    margin-top: 0.15rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.les-modal__email-target strong {
    color: #fff;
    font-weight: 600;
    word-break: break-all;
}

#les-phone-verify-prompt strong {
    color: var(--accent-color);
    font-weight: 600;
}

.les-modal__error {
    margin: 0.5rem 0 0;
    font-size: 0.82rem;
    color: #ff8a80;
}

.les-modal__error.les-hidden {
    display: none;
}

body.les-modal-open {
    overflow: hidden;
    touch-action: none;
}

@keyframes earnPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ========================================
   EARN MODE – Player Button Override
   ======================================== */

.btn-hero-play.earn-mode .btn-hero-play__halo {
    background: linear-gradient(145deg, #ffcc80 0%, #ff9100 45%, #f57c00 100%) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35) inset,
        0 4px 22px rgba(255, 145, 0, 0.5) !important;
}

.btn-hero-play.earn-mode .btn-hero-play__halo::after {
    border-color: rgba(255, 171, 64, 0.55) !important;
}

.btn-hero-play.earn-mode .btn-hero-play__inner {
    background: linear-gradient(160deg, rgba(80, 40, 0, 0.92) 0%, rgba(50, 25, 0, 0.96) 100%) !important;
    color: #fff5e6 !important;
}

.btn-hero-play.earn-mode .btn-hero-play__icon {
    color: #fff5e6 !important;
}

/* Desktop / tablet navbar live pill — earn tint on play control only */
@media (min-width: 993px) {
    .live-btn-container .btn-live.earn-mode {
        border-color: rgba(255, 171, 64, 0.55) !important;
        background: linear-gradient(135deg, rgba(255, 145, 0, 0.28) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
        color: #fff !important;
        box-shadow:
            0 4px 24px rgba(255, 145, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    }

    .live-btn-container .btn-live.earn-mode .btn-live__play-halo {
        background: linear-gradient(145deg, #ffcc80 0%, #ff9100 45%, #f57c00 100%) !important;
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.35) inset,
            0 2px 14px rgba(255, 145, 0, 0.5) !important;
    }

    .live-btn-container .btn-live.earn-mode .btn-live__play-inner {
        background: linear-gradient(160deg, rgba(80, 40, 0, 0.92) 0%, rgba(50, 25, 0, 0.96) 100%) !important;
        color: #fff5e6 !important;
    }
}

/* ========================================
   ANTI-CHEAT MODAL
   ======================================== */

.anticheat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.anticheat-modal.anticheat-hidden {
    display: none;
}

.anticheat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.anticheat-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #292929 0%, #333333 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(205, 178, 42, 0.15);
    animation: slideUp 0.4s ease;
}

.anticheat-icon {
    width: 80px;
    height: 80px;
    background: rgba(205, 178, 42, 0.15);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: earnPulse 1.5s infinite;
}

.anticheat-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.anticheat-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.anticheat-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.anticheat-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.anticheat-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 178, 42, 0.4);
}

.anticheat-btn:disabled,
.anticheat-btn.anticheat-btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.anticheat-timer {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b6b;
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   LISTEN EARN SWAP – Responsive
   ======================================== */

@media (min-width: 993px) {
  .les-dashboard:not(.les-hidden) {
    display: flex;
    flex-direction: column;
    max-height: min(85vh, 640px);
  }

  .les-dashboard:not(.les-hidden) .les-body {
    flex: 1 1 auto;
    min-height: 0;
    max-height: min(58vh, 480px);
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media (max-width: 992px) {
  .les-dashboard {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    /* Below offcanvas nav (1000) and menu toggle (1001); above player dock (990) */
    z-index: 995;
  }

  /* Minimized: yellow coin FAB (reference UI) */
  .les-dashboard.les-collapsed {
    width: auto;
    min-width: 0;
    left: calc(14px + env(safe-area-inset-left, 0px));
    right: auto;
    margin-left: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible;
  }

  .les-dashboard.les-collapsed .les-header {
    padding: 6px 10px 6px 4px;
    justify-content: flex-start;
    background: transparent !important;
    border: none;
    box-shadow: none;
  }

  .les-dashboard.les-collapsed .les-header:hover,
  .les-dashboard.les-collapsed .les-header:focus-visible {
    background: transparent !important;
  }

  .les-dashboard.les-collapsed .les-header-title,
  .les-dashboard.les-collapsed .les-chevron {
    display: none !important;
  }

  .les-dashboard.les-collapsed .les-header-left {
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.35),
      0 0 0 2px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
    animation: lesCoinFabPulse 2.2s ease-in-out infinite;
  }

  .les-dashboard.les-collapsed .les-header-left i {
    font-size: 1.55rem;
    width: auto;
    line-height: 1;
    color: #1a1a1a;
    text-align: center;
    filter: none;
    transition: color 0.25s ease;
  }

  .les-dashboard.les-collapsed .les-header:active .les-header-left {
    transform: scale(0.94);
    animation: none;
  }

  /* Earn active: BambaSwap orange coin */
  .les-dashboard.les-collapsed.les-earn-fab-active .les-header-left {
    background: linear-gradient(145deg, #ffcc80 0%, #ff9100 48%, #f57c00 100%);
    box-shadow:
      0 4px 18px rgba(255, 109, 0, 0.5),
      0 0 0 2px rgba(255, 200, 120, 0.35);
  }

  .les-dashboard.les-collapsed.les-earn-fab-active .les-header-left i {
    color: #2d1600;
  }

  @media (prefers-reduced-motion: reduce) {
    .les-dashboard.les-collapsed .les-header-left {
      animation: none;
    }
  }
}

@keyframes lesCoinFabPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.35),
      0 0 0 2px rgba(0, 0, 0, 0.08);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 6px 20px rgba(0, 0, 0, 0.4),
      0 0 0 3px rgba(205, 178, 42, 0.35);
  }
}

@media (max-width: 768px) {
    .les-dashboard:not(.les-collapsed) {
        width: calc(100% - 30px);
        right: 15px;
        left: 15px;
        bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }

    .les-body {
        max-height: min(58vh, 420px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .les-rate-info {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .les-rate-info span {
        display: block;
    }

    .les-phone-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .les-phone-banner__btn {
        margin-left: 0;
        width: 100%;
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        text-align: center;
    }

    .les-modal {
        align-items: flex-end;
        justify-content: flex-end;
        padding: 0;
    }

    .les-modal__panel {
        max-width: none;
        width: 100%;
        max-height: min(88dvh, 88vh);
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        padding: 1.35rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    }

    .les-modal__panel h3 {
        font-size: 1.05rem;
        padding-right: 2.5rem;
        text-transform: none;
        letter-spacing: 0;
    }

    .user-email {
        max-width: 120px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .les-dashboard:not(.les-collapsed) {
        width: calc(100% - 16px);
        right: 8px;
        left: 8px;
        bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
        border-radius: 12px;
    }

    .les-dashboard.les-collapsed {
        left: env(safe-area-inset-left, 0px);
        bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
    }

    .les-dashboard.les-collapsed .les-header-left {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .les-dashboard.les-collapsed .les-header-left i {
        font-size: 1.4rem;
    }

    .les-body {
        padding: 1rem;
        max-height: min(52vh, 380px);
    }

    .les-stat {
        padding: 0.6rem 0.75rem;
    }

    .les-stat-value {
        font-size: 1rem;
    }

    .les-verify-inline {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .user-email {
        max-width: 90px;
        font-size: 0.7rem;
    }
}

/* Desktop Offcanvas */
.btn-desktop-menu {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: none;
}

@media (min-width: 993px) {
    .btn-desktop-menu {
        display: flex;
        align-items: center;
        margin: 0;
    }
}

.desktop-offcanvas {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: var(--primary-color);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: left 0.4s ease-in-out;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}

.desktop-offcanvas.active {
    left: 0;
}

.close-desktop-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-desktop-menu:hover {
    color: var(--accent-color);
}

.desktop-offcanvas-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.offcanvas-auth {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offcanvas-socials {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.offcanvas-socials h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.offcanvas-socials .social-links {
    display: flex;
    gap: 1rem;
}

.offcanvas-socials .social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.offcanvas-socials .social-links a:hover {
    color: var(--accent-color);
}
@media (max-width: 992px) {
    .desktop-offcanvas { display: none; }
}

/* ========== PWA install prompt ========== */
body.pwa-install-open {
    overflow: hidden;
}

.pwa-install-root {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: max(0.5rem, env(safe-area-inset-top, 0px)) 1rem max(1rem, env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.pwa-install-root--hidden {
    display: none;
}

.pwa-install-root:not(.pwa-install-root--hidden) {
    pointer-events: auto;
}

.pwa-install-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(14, 13, 13, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
}

.pwa-install-card {
    position: relative;
    z-index: 1;
    width: min(100%, 26rem);
    max-height: min(88vh, 34rem);
    max-height: min(88dvh, 34rem);
    margin-bottom: 0.25rem;
    padding: 1.35rem 1.35rem 1.15rem;
    border-radius: 1.1rem;
    background: linear-gradient(155deg, #333333 0%, #292929 55%, #1d1d1d 100%);
    border: 1px solid rgba(205, 178, 42, 0.22);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    text-align: center;
    animation: pwa-install-rise 0.38s ease-out;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    pointer-events: auto;
    touch-action: manipulation;
}

@keyframes pwa-install-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pwa-install-card {
        animation: none;
    }
}

.pwa-install-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.pwa-install-close:hover {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.35);
}

.pwa-install-icon {
    border-radius: 1rem;
    margin: 0 auto 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pwa-install-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 0.45rem;
    text-transform: none;
    letter-spacing: 0.02em;
}

.pwa-install-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.15rem;
}

.pwa-install-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pwa-install-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.72rem 1rem;
    border-radius: 0.65rem;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(205, 178, 42, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pwa-install-btn:active {
    transform: scale(0.98);
}

.pwa-install-btn--primary {
    background: linear-gradient(145deg, var(--accent-color) 0%, #fff6a8 100%);
    color: #1d1d1d;
    box-shadow: 0 4px 14px rgba(205, 178, 42, 0.25);
}

.pwa-install-btn--primary:hover {
    box-shadow: 0 6px 20px rgba(205, 178, 42, 0.35);
}

.pwa-install-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.pwa-install-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 480px) {
    .pwa-install-root {
        align-items: center;
        padding-bottom: 2rem;
    }

    .pwa-install-actions {
        flex-direction: row;
        justify-content: center;
    }

    .pwa-install-btn {
        flex: 1;
        min-width: 0;
    }
}

/* Compact reminder after “Not now” / close (install still available) */
.pwa-install-chip {
    position: fixed;
    right: max(0.75rem, env(safe-area-inset-right, 0));
    bottom: max(1rem, calc(0.65rem + env(safe-area-inset-bottom, 0px)));
    z-index: 2147482000;
    will-change: transform;
    display: flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.14);
    animation: pwa-chip-in 0.35s ease-out;
}

.pwa-install-chip--hidden {
    display: none;
}

@keyframes pwa-chip-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pwa-install-chip {
        animation: none;
    }
}

.pwa-install-chip__main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem 0.55rem 0.85rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #cdb22a;
    transition: filter 0.2s ease, background 0.2s ease;
}

.pwa-install-chip__main:hover {
    filter: brightness(1.04);
}

.pwa-install-chip__icon {
    font-size: 1rem;
    opacity: 1;
    color: #0a0a0a;
}

.pwa-install-chip__close {
    width: 2.45rem;
    flex-shrink: 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.18);
    cursor: pointer;
    color: #0a0a0a;
    background: #cdb22a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.pwa-install-chip__close:hover {
    background: #e6e600;
    color: #0a0a0a;
}

@media (min-width: 993px) {
    .pwa-install-chip {
        bottom: 78px;
        right: 12px;
        z-index: 1320;
    }
}

/* Mobile floating install ribbon (shown above player bar) */
@media (max-width: 992px) {
    .pwa-install-chip {
        right: max(0.55rem, env(safe-area-inset-right, 0px));
        bottom: calc(5.45rem + env(safe-area-inset-bottom, 0px));
        z-index: 2147483640;
        max-width: min(19rem, calc(100vw - 1.1rem));
    }
}

/* PWA standalone: no install strip; shorter inset for player bar only */
@media (max-width: 992px) {
    @media (display-mode: standalone) {
        .stream-dock-promo {
            display: none !important;
        }

        body {
            padding-bottom: calc(4.85rem + env(safe-area-inset-bottom, 0px)) !important;
        }
    }
}

