@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

/* =============================================================================
   VAS RADIO 99.4 FM — PREMIUM FULLY THEME-ISOLATED STYLESHEET
   ============================================================================= */


/* =============================================================================
   === 01. DESIGN TOKENS & RESET & BASICS ===
   ============================================================================= */

/* ── Light Mode ── */
/* --- Design Tokens --- */

:root {
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 75px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: rgba(248, 250, 252, 1.0);
    color: rgba(15, 23, 42, 1.0);
    line-height: 1.7;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Container --- */

.container {
    width: 95%;
    max-width: 1800px;
    margin-inline: auto;
    padding: 0 2vw;
}

/* ── Dark Mode ── */
[data-theme="dark"] body {
    background: rgba(2, 6, 23, 1.0);
    color: rgba(241, 245, 249, 1.0);
}

/* =============================================================================
   === 02. HEADER & NAVIGATION ===
   ============================================================================= */

/* ── Light Mode ── */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    transition: all 0.4s var(--ease);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo {
    height: 42px;
    filter: drop-shadow(0 0 10px rgba(248, 68, 30, 0.4));
    transition: filter 0.3s;
}

.logo-link:hover .nav-logo {
    filter: drop-shadow(0 0 18px rgba(248, 68, 30, 0.7));
}

.logo-link .logo-text {
    font-size: 1.7rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 1.0);
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.main-header.scrolled .logo-link .logo-text {
    color: rgba(15, 23, 42, 1.0);
}

.logo-link .text-primary {
    color: rgba(248, 68, 30, 1.0);
}

.header-actions-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.global-search-btn {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.global-search-btn:hover {
    transform: scale(1.08);
}

/* Nav */

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-list li a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(100, 116, 139, 1.0);
    border-radius: 8px;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s var(--ease);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    width: 0;
    height: 2px;
    background: rgba(248, 68, 30, 1.0);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-list li a:hover {
    color: rgba(196, 49, 16, 1.0);
}

.nav-list li a.active {
    color: rgba(196, 49, 16, 1.0);
}

.nav-list li a:hover::after, .nav-list li a.active::after {
    width: calc(100% - 24px);
}

/* Consolidated Nav Dropdown Menu System */
.nav-item-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(100, 116, 139, 1.0);
    border-radius: 8px;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s var(--ease);
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    gap: 4px;
}

.dropdown-trigger i {
    font-size: 0.72rem;
    transition: transform 0.3s var(--ease);
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    width: 0;
    height: 2px;
    background: rgba(248, 68, 30, 1.0);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.dropdown-trigger:hover {
    color: rgba(196, 49, 16, 1.0);
}

@media (min-width: 1025px) {
    .dropdown-trigger:hover::after {
        width: calc(100% - 24px);
    }
}

.main-header.scrolled .dropdown-trigger {
    color: rgba(100, 116, 139, 1.0);
}

.main-header.scrolled .dropdown-trigger:hover {
    color: rgba(196, 49, 16, 1.0);
}

[data-theme="dark"] .dropdown-trigger:hover {
    background: rgba(248, 68, 30, 0.12);
}

[data-theme="dark"] .main-header.scrolled .dropdown-trigger {
    color: rgb(255, 255, 255);
}

@media (min-width: 1025px) {
    .nav-item-dropdown:hover .dropdown-trigger i {
        transform: rotate(180deg);
    }
}


.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 6px 0;
    min-width: 190px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

@media (min-width: 1025px) {
    .nav-item-dropdown:hover .nav-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(4px);
    }
}

.nav-dropdown li {
    width: 100%;
}

.nav-dropdown li a {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    color: rgb(255, 255, 255) !important;
    border-radius: 0 !important;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease !important;
    background: transparent !important;
    display: block;
}

.nav-dropdown li a::after {
    display: none !important;
}

.nav-dropdown li a:hover {
    color: #ff7d5a !important;
    background: #27212f !important;
    padding-left: 24px !important;
}

/* Light Mode Scrolled Adaptation */
.main-header.scrolled .nav-dropdown {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.main-header.scrolled .nav-dropdown li a {
    color: rgba(71, 85, 105, 1.0) !important;
}

.main-header.scrolled .nav-dropdown li a:hover {
    color: #c43110 !important;
    background: #fbf3f1 !important;
}

/* Dark Mode Scrolled Adaptation */
[data-theme="dark"] .main-header.scrolled .nav-dropdown {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .main-header.scrolled .nav-dropdown li a {
    color: rgba(203, 213, 225, 1.0) !important;
}

[data-theme="dark"] .main-header.scrolled .nav-dropdown li a:hover {
    color: var(--primary, rgba(248, 68, 30, 1.0)) !important;
    background: rgba(248, 68, 30, 0.1) !important;
}

/* Listen Live Pill CTA Style */
.header-listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #c43110;
    background: linear-gradient(135deg, #c43110, #962208);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 49, 16, 0.35);
    transition: all 0.3s var(--ease);
    outline: none;
}

@media (max-width: 768px) {
    .header-listen-btn {
        display: none !important;
    }
}

.header-listen-btn:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 20px rgba(248, 68, 30, 0.5);
}

.header-listen-btn.playing {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.header-listen-btn.playing:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.header-listen-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

@keyframes pulse-subtle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* NOTE: .animate-pulse-subtle kept for JS use if needed, but not applied to nav buttons */


/* Dark mode adjustment for navbar menu pill background */

.main-header.scrolled .nav-list li a {
    color: rgba(100, 116, 139, 1.0);
}

.main-header.scrolled .nav-list li a:hover,
.main-header.scrolled .nav-list li a.active {
    color: rgba(196, 49, 16, 1.0);
}

/* Theme Toggle & Language Trigger Shared Base Styles */
.theme-toggle,
.homepage-lang-trigger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 1px solid #f5d5ce;
    background: #fdf3f1;
    color: #c43110;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    position: relative;
    outline: none;
}

.theme-toggle:hover,
.homepage-lang-trigger:hover {
    background: #fbe6e2;
    border-color: #f0bebe;
    color: #c43110;
    transform: scale(1.05) translateY(-1px);
}

.theme-toggle:hover {
    transform: rotate(15deg) scale(1.05) translateY(-1px);
}

/* Scrolled Navbar Mode (Maintains perfect brand colors) */

.main-header.scrolled .theme-toggle,
.main-header.scrolled .homepage-lang-trigger {
    border-color: #f5d5ce;
    color: #c43110;
    background: #fdf3f1;
}

/* Dark Mode Theme & Language Toggle Styles (Consistent with Admin) */

/* Sun/Moon Icon Display Logic (Sun = Light theme, Moon = Dark theme, identical to admin) */

.theme-toggle i {
    font-size: 1.25rem;
}

.theme-icon-sun {
    display: block;
    color: rgba(245, 158, 11, 1.0);
}

.theme-icon-moon {
    display: none;
}

/* Mobile toggle */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(15, 23, 42, 1.0);
    border-radius: 2px;
    transition: all 0.3s;
}

.main-header.scrolled .bar {
    background: rgba(15, 23, 42, 1.0);
}

/* ── Dark Mode ── */
[data-theme="dark"] .main-header {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .main-header .logo-link .logo-text {
    color: rgb(255, 255, 255);
}

[data-theme="dark"] .main-header .nav-list li a {
    color: rgb(255, 255, 255);
}

[data-theme="dark"] .main-header .dropdown-trigger {
    color: rgb(255, 255, 255);
}

[data-theme="dark"] .bar {
    background: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .main-header.scrolled {
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .main-header.scrolled .logo-link .logo-text {
    color: rgb(255, 255, 255);
}

[data-theme="dark"] .nav-list li a:hover,
[data-theme="dark"] .nav-list li a.active {
    background: rgba(248, 68, 30, 0.12);
}

[data-theme="dark"] .main-header.scrolled .nav-list li a {
    color: rgb(255, 255, 255);
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .homepage-lang-trigger {
    background: rgba(248, 68, 30, 0.12);
    border-color: rgba(248, 68, 30, 0.22);
}

[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .homepage-lang-trigger:hover {
    background: #3d2028;
    border-color: #521c25;
    color: #ff7d5a;
}

[data-theme="dark"] .theme-icon-sun {
    display: none;
}

[data-theme="dark"] .theme-icon-moon {
    display: block;
    color: rgba(255, 125, 90, 1.0);
}

[data-theme="dark"] .main-header.scrolled .bar {
    background: rgba(241, 245, 249, 1.0);
}

/* =============================================================================
   === 03. HERO BANNER ===
   ============================================================================= */

/* ── Light Mode ── */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    background: #080b11;
    z-index: 10;
}

.hero-section-block {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    border: none;
}

.live-radio-block {
    width: 100%;
    margin-top: 0;
}

/* Restructuring live-schedule-split under hero grid */
.live-radio-block .live-schedule-split {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 20px;
    align-items: stretch;
    height: 100%;
}

.live-schedule-split.schedule-hidden,
.live-radio-block .live-schedule-split.schedule-hidden {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
}

/* Adjust player in hero grid to feel premium and glassmorphic */
.live-radio-block .player-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: #0f172a;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.live-radio-block .player-container .album-art-wrapper {
    background: rgba(241, 245, 249, 1.0);
    border: 6px solid rgba(226, 232, 240, 1.0);
    transition: all 0.4s var(--ease);
}

.live-radio-block .player-container .player-info h3 {
    color: #0f172a !important;
}

.live-radio-block .player-container .player-info p {
    color: #475569 !important;
}

.live-radio-block .player-container .volume-control {
    color: #1e293b !important;
}

.live-radio-block .player-container .volume-control i {
    color: #1e293b !important;
    opacity: 0.95;
    transition: color 0.3s ease;
}

.live-radio-block .player-container .player-meta {
    color: #475569 !important;
}

/* Dark Mode Overrides for player container */
[data-theme="dark"] .live-radio-block .player-container {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

[data-theme="dark"] .live-radio-block .player-container .album-art-wrapper {
    background: rgba(30, 41, 59, 1.0);
    border: 6px solid rgba(51, 65, 85, 1.0);
}

[data-theme="dark"] .live-radio-block .player-container .player-info h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .live-radio-block .player-container .player-info p {
    color: #94a3b8 !important;
}

[data-theme="dark"] .live-radio-block .player-container .volume-control {
    color: #94a3b8 !important;
}

[data-theme="dark"] .live-radio-block .player-container .volume-control i {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .live-radio-block .player-container .player-meta {
    color: #cbd5e1 !important;
}

/* Glassmorphic schedule container */
.hero-right-col .schedule-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

/* Ken Burns effect on slide background */

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Active slide: animate background zoom smoothly using GPU-accelerated transform */

.heroSwiper .swiper-slide-active .hero-slide-bg {
    animation: kenBurns 9s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1.12); }
    to   { transform: scale(1); }
}

/* Cinematic vignette overlay on each slide */

.heroSwiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

.heroSwiper .swiper-slide .container {
    position: relative;
    z-index: 2;
    padding: 0;
}

.hero-slide-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-h) + 20px);
    pointer-events: none;
    text-align: left;
}

.default-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 1.0) 0%, rgba(30, 41, 59, 1.0) 50%, rgba(15, 23, 42, 1.0) 100%);
}

/* Hero content box */

.hero-box {
    width: fit-content;
    max-width: 850px;
    padding: 40px 60px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    margin-left: 120px; /* Safe distance from the left arrow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    position: relative;
    pointer-events: auto;
}

/* Staggered entry animations — triggered per slide */

.hero-box .badge,
.hero-box .title,
.hero-box .subtitle,
.hero-box .hero-actions {
    opacity: 0;
    transform: translateY(24px);
}

.swiper-slide-active .hero-box .badge {
    animation: heroItemIn 0.7s var(--ease) 0.15s forwards;
}

.swiper-slide-active .hero-box .title {
    animation: heroItemIn 0.75s var(--ease) 0.35s forwards;
}

.swiper-slide-active .hero-box .subtitle {
    animation: heroItemIn 0.7s var(--ease) 0.55s forwards;
}

.swiper-slide-active .hero-box .hero-actions {
    animation: heroItemIn 0.7s var(--ease) 0.75s forwards;
}

@keyframes heroItemIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-box .badge {
    display: inline-flex;
    align-self: flex-start;
    width: auto;
    background: linear-gradient(135deg, rgba(248, 68, 30, 1.0), rgba(214, 51, 0, 1.0));
    color: rgba(255, 255, 255, 1.0);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(248, 68, 30, 0.4);
}

.hero-box .title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 1.0);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-box .subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(248, 68, 30, 1.0), rgba(214, 51, 0, 1.0));
    color: rgba(255, 255, 255, 1.0);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 25px rgba(248, 68, 30, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(248, 68, 30, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #0f172a;
    background: rgba(15, 23, 42, 0.6);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 1.0);
    transform: translateY(-2px);
}

.btn-outline.btn-whatsapp {
    border-color: rgba(18, 140, 126, 1.0);
    color: rgba(18, 140, 126, 1.0);
}

.btn-outline.btn-whatsapp:hover {
    background: #0e6f64;
    color: #ffffff;
}

.hero-schedule-tag {
    margin-top: 18px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-schedule-tag i {
    color: rgba(248, 68, 30, 1.0);
}

/* Swiper Nav */

.swiper-button-next, .swiper-button-prev {
    color: rgba(255, 255, 255, 1.0) !important;
    background: rgba(0,0,0,0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(248, 68, 30, 1.0);
    border-color: rgba(248, 68, 30, 1.0);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.1rem !important;
    font-weight: 900;
}

/* Pagination — animated pill style */

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    bottom: 28px !important;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.4) !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50px !important;
    transition: all 0.4s var(--ease) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: rgba(248, 68, 30, 1.0) !important;
    width: 28px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 10px rgba(248, 68, 30, 0.6) !important;
}

/* =============================================================================
   === 04. SECTION WRAPPERS & UTILITIES ===
   ============================================================================= */

/* ── Light Mode ── */
.section-wrapper {
    padding: 70px 0;
}

.section-header {
    margin-bottom: 35px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .underline {
    margin: 12px auto 0;
}

.section-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: rgba(15, 23, 42, 1.0);
    letter-spacing: -0.5px;
}

.underline {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, rgba(248, 68, 30, 1.0), rgba(214, 51, 0, 1.0));
    border-radius: 2px;
    margin-top: 10px;
}

.section-header p {
    color: rgba(100, 116, 139, 1.0);
    margin-top: 8px;
}

[data-theme="dark"] .section-header h2 {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .section-header p {
    color: rgba(148, 163, 184, 1.0);
}

/* Dark-background sections: force white text regardless of theme */
.dark-section .section-header h2 {
    color: rgba(241, 245, 249, 1.0);
}
.dark-section .section-header p {
    color: rgba(148, 163, 184, 1.0);
}

/* =============================================================================
   === 05. LIVE RADIO PLAYER ===
   ============================================================================= */

/* ── Light Mode ── */
.live-radio-bg {
    background: rgba(255, 255, 255, 1.0);
    position: relative;
    overflow: hidden;
}

.live-radio-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 68, 30, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.live-schedule-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* --- Player Card --- */

.player-container {
    background: rgba(15, 23, 42, 1.0);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    color: rgba(255, 255, 255, 1.0);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255,255,255,0.04);
}

.player-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 68, 30, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.visualizer-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.v-bar {
    width: 4px;
    background: linear-gradient(to top, rgba(248, 68, 30, 1.0), rgba(248, 68, 30, 0.3));
    border-radius: 2px 2px 0 0;
    transition: height 0.15s ease;
    min-height: 5px;
}

.player-labels {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.label-orange {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(248, 68, 30, 1.0);
    text-transform: uppercase;
}

.album-art-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 1.0);
    border: 6px solid rgba(51, 65, 85, 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(248, 68, 30, 0.3);
    transition: box-shadow 0.5s;
}

.album-art-wrapper.playing {
    animation: spin 12s linear infinite, glowPulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(248, 68, 30, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(248, 68, 30, 0.05); }
}

.player-info {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.player-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 1.0);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info p {
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 1.0);
}

.controls-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.play-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(248, 68, 30, 1.0), rgba(214, 51, 0, 1.0));
    color: rgba(255, 255, 255, 1.0);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(248, 68, 30, 0.4);
    transition: all 0.3s var(--ease);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(248, 68, 30, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 240px;
    color: rgba(100, 116, 139, 1.0);
    font-size: 0.9rem;
}

.volume-control i {
    color: rgba(30, 41, 59, 0.95); /* Slate 800 default (Light Mode) - High contrast */
    transition: color 0.3s ease;
}

[data-theme="dark"] .volume-control i {
    color: rgba(241, 245, 249, 0.95); /* Slate 100 in Dark Mode */
}

.volume-control input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 6px;
    background: rgba(51, 65, 85, 1.0);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: background 0.15s ease;
}

/* Chrome, Safari, Edge, Opera Track */
.volume-control input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 6px;
    background: transparent;
    border: none;
}

/* Chrome, Safari, Edge, Opera Thumb */
.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1.0);
    box-shadow: 0 0 8px rgba(248, 68, 30, 0.4);
    cursor: pointer;
    margin-top: -4px; /* Perfectly centers the thumb on the 6px track */
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: rgba(248, 68, 30, 1.0);
}

/* Firefox Track */
.volume-control input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 6px;
    background: transparent;
    border: none;
}

/* Firefox Thumb */
.volume-control input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1.0);
    box-shadow: 0 0 8px rgba(248, 68, 30, 0.4);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s;
}

.volume-control input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.25);
    background: rgba(248, 68, 30, 1.0);
}

/* --- Schedule --- */

.schedule-container {
    background: rgba(255, 255, 255, 1.0);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.table-responsive {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table thead th {
    background: rgba(15, 23, 42, 1.0);
    color: rgba(255, 255, 255, 1.0);
    padding: 12px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: left;
}

.schedule-table thead th:first-child {
    border-radius: 0;
}

.schedule-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 1.0);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover td {
    background: rgba(248, 68, 30, 0.04);
}

/* ── Dark Mode ── */
[data-theme="dark"] .live-radio-bg {
    background: rgba(15, 23, 42, 1.0);
}

[data-theme="dark"] .schedule-container {
    background: rgba(30, 41, 59, 1.0);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .schedule-table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(241, 245, 249, 1.0);
}

/* =============================================================================
   === 06. PROGRAMS SECTION ===
   ============================================================================= */

/* ── Light Mode ── */
.programs-bg {
    background: rgba(248, 250, 252, 1.0);
    position: relative;
    overflow: hidden;
}

.programs-bg::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 68, 30, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

/* Programs Swiper wrapper — positions nav buttons, allows hover-scale overflow */

.programs-swiper-wrap {
    position: relative;
    padding: 0 52px;
}

/* Programs nav buttons */

.programs-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1.0);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    color: rgba(15, 23, 42, 1.0);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.programs-nav-btn:hover {
    background: #c43110;
    border-color: #c43110;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(196, 49, 16, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.programs-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.programs-prev {
    left: 0;
}

.programs-next {
    right: 0;
}

/* Programs Swiper Easing */

.programsSwiper .swiper-slide {
    height: auto;
    padding: 15px 0;
}

.program-card {
    background: rgba(255, 255, 255, 1.0);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    cursor: pointer;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0,0,0);
    will-change: transform, box-shadow;
}

.program-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(248, 68, 30, 0.4);
    z-index: 10;
}

.program-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(248, 68, 30, 1.0) 0%, rgba(214, 51, 0, 1.0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s var(--ease);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0,0,0);
}

.program-img i {
    transition: all 0.4s var(--ease);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.program-card:hover .program-img i {
    transform: scale(1.4) rotate(-5deg);
    opacity: 0.8;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0,0,0);
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-card-info {
    padding: 22px 20px;
    background: inherit;
    position: relative;
    z-index: 2;
}

.program-card-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: rgba(15, 23, 42, 1.0);
    transition: color 0.3s;
}

.program-card-info p {
    font-size: 0.88rem;
    color: rgba(100, 116, 139, 1.0);
    line-height: 1.6;
}

.about-bg {
    background: rgba(255, 255, 255, 1.0);
    transition: background 0.4s var(--ease);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-logo {
    text-align: center;
}

/* About text adaptive */

.about-grid p {
    color: rgba(100, 116, 139, 1.0);
    line-height: 1.9;
    font-size: 1rem;
}

.about-grid strong {
    color: rgba(15, 23, 42, 1.0);
}

/* --- Vision & Mission Section --- */

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 50px;
}

.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 40px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(248, 68, 30, 0.3);
}

/* Glowing Aura on Hover */

.premium-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 68, 30, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 1;
}

.premium-card:hover .card-glow {
    opacity: 1;
}

.premium-card > * {
    position: relative;
    z-index: 2;
}

/* Card Icons */

.premium-card .card-icon {
    width: 60px;
    height: 60px;
    background: #fdf3f1;
    color: #c43110;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.premium-card:hover .card-icon {
    background: #c43110;
    color: #ffffff;
    transform: scale(1.1) rotate(10deg);
}

.premium-card .card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 1.0);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.premium-card .card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(100, 116, 139, 1.0);
}

/* Mission List styling */

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mission-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fdf3f1;
    color: #c43110;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 4px;
    transition: all 0.3s var(--ease);
}

.premium-card:hover .mission-num {
    background: #c43110;
    color: #ffffff;
}

.mission-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(100, 116, 139, 1.0);
    margin: 0;
}

/* About content card styling */

.about-content-card {
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-left: 5px solid rgba(248, 68, 30, 1.0);
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(100, 116, 139, 1.0);
}

/* Responsive adjustment */

@media (max-width: 1024px) {
.vision-mission-grid {
    grid-template-columns: 1fr;
}
}

/* ── Dark Mode ── */
[data-theme="dark"] .programs-bg {
    background: rgba(2, 6, 23, 1.0);
}

[data-theme="dark"] .programs-nav-btn {
    background: rgba(30, 41, 59, 1.0);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1.0);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

[data-theme="dark"] .program-card {
    background: rgba(30, 41, 59, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .program-card-info h4 {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .program-card-info p {
    color: rgba(148, 163, 184, 1.0);
}

[data-theme="dark"] .about-bg {
    background: rgba(15, 23, 42, 1.0);
}

[data-theme="dark"] .about-grid p {
    color: rgba(203, 213, 225, 1.0);
}

[data-theme="dark"] .about-grid strong {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .premium-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .premium-card .card-title {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .premium-card .card-text {
    color: rgba(203, 213, 225, 1.0);
}

[data-theme="dark"] .mission-desc {
    color: rgba(203, 213, 225, 1.0);
}

[data-theme="dark"] .about-content-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left-color: rgba(248, 68, 30, 1.0);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .about-desc {
    color: rgba(203, 213, 225, 1.0);
}

/* =============================================================================
   === 07. CONTACT SECTION ===
   ============================================================================= */

/* ── Light Mode ── */
.contact-section {
    background: rgba(248, 250, 252, 1.0);
    transition: background 0.4s var(--ease);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.2fr;
    align-items: stretch;
    gap: 0;
}

.contact-col {
    padding: 0 40px;
}

.contact-col:first-child {
    padding-left: 0;
}

.contact-col:last-child {
    padding-right: 0;
}

.contact-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(248, 68, 30, 1.0), transparent);
    border-radius: 2px;
    align-self: stretch;
    opacity: 0.6;
}

.contact-col-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 1.0);
    margin-bottom: 28px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 1.0);
    margin-bottom: 2px;
    transition: color 0.3s;
}

.contact-item:hover .contact-text h5 {
    color: rgba(248, 68, 30, 1.0);
}

.contact-text p {
    font-size: 0.88rem;
    color: rgba(100, 116, 139, 1.0);
}

.contact-icon.phone {
    background: #fff1ed;
    color: #c43110;
}

.contact-icon.whatsapp {
    background: #e9f7ef;
    color: #075e54;
}

.contact-icon.email {
    background: #fef5f5;
    color: #b41e14;
}

.contact-icon.website {
    background: #eef6ff;
    color: #0369a1;
}

.contact-icon.instagram {
    background: #fdf2f6;
    color: #c11b55;
}

.contact-icon.tiktok {
    background: #f3f3f3;
    color: #222222;
}

.contact-icon.facebook {
    background: #edf4fe;
    color: #0d5cb9;
}

.contact-icon.twitter {
    background: #f0f2f5;
    color: #000000;
}

/* Dark mode icon backgrounds */

.map-col {
    text-align: center;
}

.map-wrapper {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 240px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

/* Quick Play Floating */

.quick-play-btn {
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    right: 30px;
    width: 60px;
    height: 60px;
    background: #c43110;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(196, 49, 16, 0.5);
    transition: all 0.3s var(--ease);
}

.quick-play-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(248, 68, 30, 0.6);
}

/* ── Dark Mode ── */
[data-theme="dark"] .contact-section {
    background: rgba(15, 23, 42, 1.0);
}

[data-theme="dark"] .contact-col-title {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .contact-text h5 {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .contact-text p {
    color: rgba(148, 163, 184, 1.0);
}

[data-theme="dark"] .contact-icon.phone {
    background: #1e293b;
    color: #ff7d5a;
}

[data-theme="dark"] .contact-icon.whatsapp {
    background: #1e293b;
    color: #25d366;
}

[data-theme="dark"] .contact-icon.email {
    background: #1e293b;
    color: #f87171;
}

[data-theme="dark"] .contact-icon.website {
    background: #1e293b;
    color: #38bdf8;
}

[data-theme="dark"] .contact-icon.instagram {
    background: #1e293b;
    color: #f472b6;
}

[data-theme="dark"] .contact-icon.tiktok {
    background: #1e293b;
    color: #f1f5f9;
}

[data-theme="dark"] .contact-icon.facebook {
    background: #1e293b;
    color: #60a5fa;
}

[data-theme="dark"] .contact-icon.twitter {
    background: #1e293b;
    color: #f1f5f9;
}

[data-theme="dark"] .map-wrapper {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* =============================================================================
   === 08. FOOTER SECTION ===
   ============================================================================= */

/* ── Light Mode ── */
.main-footer {
    background: rgba(15, 23, 42, 1.0);
    color: rgba(148, 163, 184, 1.0);
    padding-top: 70px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: rgba(255, 255, 255, 1.0);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary, rgba(248, 68, 30, 1.0));
    border-radius: 2px;
    margin-top: 8px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(148, 163, 184, 0.85);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(148, 163, 184, 0.8);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--primary, rgba(248, 68, 30, 1.0));
    transform: translateX(4px);
}

.logo-title {
    font-weight: 800;
    font-size: 1.6rem;
}

/* --- Live Program Airing Card (Dynamic Footer) --- */
.footer-live-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-live-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 68, 30, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-live-badge.off-air {
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.1);
}

.footer-live-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-red 1.5s infinite;
}

.footer-live-dot.off-air {
    background-color: #94a3b8;
    animation: none;
}

.footer-live-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
}

.footer-live-meta {
    font-size: 0.78rem;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

/* --- Contact Pills (Dynamic Contact Icons) --- */
.footer-contact-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.85);
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
}

.footer-contact-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 68, 30, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact-pill i {
    color: var(--primary, rgba(248, 68, 30, 1.0));
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

/* --- Today's Schedule Column (Column 3) --- */
.footer-schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-schedule-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.footer-schedule-item.active-now {
    background: rgba(248, 68, 30, 0.06);
    border-color: rgba(248, 68, 30, 0.3);
    box-shadow: 0 0 12px rgba(248, 68, 30, 0.1);
}

.footer-schedule-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-schedule-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
}

.footer-schedule-item.active-now .footer-schedule-name {
    color: #fff;
}

.footer-schedule-announcer {
    font-size: 0.75rem;
    color: #64748b;
}

.footer-schedule-time {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.footer-schedule-item.active-now .footer-schedule-time {
    background: var(--primary, rgba(248, 68, 30, 1.0));
    color: #fff;
}

.footer-schedule-live-indicator {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary, rgba(248, 68, 30, 1.0));
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* --- News Item styling & shoutbox CTA (Column 4) --- */
.footer-news-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-news-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, rgba(248, 68, 30, 1.0));
}

.footer-news-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-news-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.4;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-news-item:hover .footer-news-title {
    color: var(--primary, rgba(248, 68, 30, 1.0));
}

.footer-news-date {
    font-size: 0.72rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- Shoutbox CTA (Dynamic Footer Column 4 bottom) --- */
.footer-shoutbox-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(248, 68, 30, 0.08), rgba(248, 68, 30, 0.02));
    border: 1px dashed rgba(248, 68, 30, 0.25);
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    color: #cbd5e1;
}

.footer-shoutbox-cta:hover {
    background: linear-gradient(135deg, rgba(248, 68, 30, 0.15), rgba(248, 68, 30, 0.05));
    border-color: var(--primary, rgba(248, 68, 30, 1.0));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 68, 30, 0.1);
}

.footer-shoutbox-cta i {
    font-size: 1.1rem;
    color: var(--primary, rgba(248, 68, 30, 1.0));
    animation: pulse-shout 2s infinite;
}

.footer-shoutbox-cta span {
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes pulse-shout {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.footer-bottom {
    background: #0c1221;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 1.0);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* =============================================================================
   === 09. RESPONSIVE MEDIA QUERIES ===
   ============================================================================= */

/* ── Light Mode ── */
@media (max-width: 1200px) and (min-width: 769px) {
.nav-list {
    gap: 2px;
}
.nav-list li a {
    padding: 8px 8px;
}
.nav-list li a::after {
    left: 8px;
}
.nav-list li a:hover::after, .nav-list li a.active::after {
    width: calc(100% - 16px);
}
}

@media (max-width: 1024px) {
.hero-section-block {
    height: 100%;
}
.live-radio-block .live-schedule-split {
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}
.live-schedule-split {
    grid-template-columns: 1fr;
}

.contact-grid {
    grid-template-columns: 1fr auto 1fr;
    row-gap: 50px;
}
.contact-grid > .contact-divider:nth-child(4) {
    display: none;
}
.contact-grid > .contact-col:last-child {
    grid-column: 1 / -1;
    padding: 0;
}
.contact-col {
    padding: 0 20px;
}
} /* Close @media (max-width: 1024px) */

@media (max-width: 768px) {
    :root {
        --header-h: 60px;
    }
    .hero-section-block {
        height: 100%;
        min-height: auto;
        background-size: cover;
        background-position: center;
    }
    .hero-box .title {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 20px;
    }
    .hero-box .subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 15px;
    }
    .hero-actions > * {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .live-radio-block {
        margin-top: 2rem;
        padding-bottom: 120px; /* Space for floating buttons */
    }
    .live-radio-block .live-schedule-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .live-radio-block > * {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .live-radio-block .player-container {
        height: auto; /* Hug content when controls are hidden */
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-divider {
        display: none;
    }
    .contact-col {
        padding: 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide swiper slider next/prev buttons and similar slider navigation buttons on smartphone mode */
    .swiper-button-next,
    .swiper-button-prev,
    .programs-nav-btn {
        display: none !important;
    }
}

@media (max-width: 1024px) {
.mobile-toggle {
    display: flex;
}
.nav-menu {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: rgba(15, 23, 42, 1.0);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: auto;
    z-index: 999;
}
.nav-menu.active {
    display: flex;
}
.nav-list {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}
.nav-list li a, .dropdown-trigger {
    font-size: 1.1rem;
    padding: 14px 30px;
    color: rgba(255,255,255,0.8);
}
.dropdown-trigger {
    width: 100%;
    justify-content: center;
    border: none;
    background: transparent;
}
.nav-list li a::after, .dropdown-trigger::after {
    display: none !important;
}
.nav-item-dropdown {
    width: 100%;
    text-align: center;
}
.nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    margin-top: 0;
    padding: 0;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.nav-dropdown.open {
    max-height: 300px;
    padding: 4px 0;
}
.nav-dropdown li a {
    text-align: center !important;
    padding: 8px 20px !important;
    font-size: 0.95rem !important;
}
.nav-dropdown li a:hover {
    transform: none !important;
}
.hero-box {
    padding: 35px 30px;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
}
.section-wrapper {
    padding: 70px 0;
}
.footer-grid {
    grid-template-columns: 1fr;
}
.about-logo {
    max-width: 250px;
    margin: 0 auto;
}
}

@media (max-width: 480px) {
    /* Header & Navigation Mobile Optimizations */
    .nav-logo {
        height: 36px;
    }
    .logo-link {
        gap: 6px;
    }
    .logo-link .logo-text {
        font-size: 1.25rem;
    }
    .header-actions-wrap {
        gap: 8px;
    }
    .theme-toggle,
    .homepage-lang-trigger {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        font-size: 0.78rem;
    }
    .global-search-btn {
        font-size: 1rem;
        padding: 4px;
    }

    /* Hero Section Mobile Optimizations */
    .hero-slide-container {
        padding-top: calc(var(--header-h) + 12px);
    }
    .hero-box {
        padding: 18px 20px;
        border-radius: 16px;
    }
    .hero-box .badge {
        font-size: 0.65rem;
        padding: 3px 8px;
        margin-bottom: 8px;
    }
    .hero-box .title {
        font-size: 1.55rem;
        margin-top: 8px;
        margin-bottom: 6px;
    }
    .hero-box .subtitle {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .hero-actions {
        gap: 8px;
        margin-top: 5px;
    }
    .btn-primary, .btn-outline {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .swiper-pagination {
        bottom: 12px !important;
    }

    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .album-art-wrapper {
        width: 140px;
        height: 140px;
    }
}

/* Extra Mobile Optimizations for very narrow screens (e.g. iPhone SE 2016 - 320px width) */
@media (max-width: 360px) {
    .logo-link .logo-text {
        display: none !important; /* Hide redundant text to prevent layout wrapping */
    }
    .header-actions-wrap {
        gap: 5px;
    }
    .theme-toggle,
    .homepage-lang-trigger {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
        font-size: 0.72rem;
    }
    .global-search-btn {
        font-size: 0.95rem;
        padding: 3px;
    }
    .mobile-toggle {
        padding: 8px;
        min-width: 38px;
        min-height: 38px;
    }
    .nav-logo {
        height: 32px;
    }
    
    .hero-slide-container {
        padding-top: calc(var(--header-h) + 8px);
    }
    .hero-box {
        padding: 12px 14px;
        border-radius: 12px;
    }
    .hero-box .badge {
        font-size: 0.6rem;
        padding: 2px 6px;
        margin-bottom: 6px;
        letter-spacing: 1px;
    }
    .hero-box .title {
        font-size: 1.25rem;
        margin-top: 4px;
        margin-bottom: 4px;
    }
    .hero-box .subtitle {
        font-size: 0.76rem;
        margin-bottom: 6px;
    }
    .hero-actions {
        gap: 6px;
    }
    .btn-primary, .btn-outline {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* =============================================================================
   === 10. HOMEPAGE LANGUAGE DROPDOWN ===
   ============================================================================= */

/* ── Light Mode ── */
.homepage-lang-dropdown {
    position: relative;
    display: inline-block;
}

/* Consolidated base styles moved to top */

.homepage-lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 150px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    z-index: 1001;
}

.homepage-lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.homepage-lang-dropdown:hover .homepage-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.homepage-lang-item {
    display: block;
    margin: 2px 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
}

.homepage-lang-item:hover {
    color: #c43110;
    background: #fee2e2;
}

.homepage-lang-item.active {
    color: #ffffff;
    background: #c43110;
}

/* About Section Light/Dark Logo Toggles */

.about-logo-img.logo-dark {
    display: none;
}

.about-logo-img.logo-light {
    display: block;
}

/* Scroll to Top Floating Button */

.scroll-to-top-btn {
    position: fixed;
    bottom: calc(180px + env(safe-area-inset-bottom, 0px));
    right: 35px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 1.0);
    color: rgba(15, 23, 42, 1.0);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s var(--ease);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
    background: #c43110;
    color: #ffffff;
    border-color: #c43110;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 25px rgba(196, 49, 16, 0.4);
}

/* ── Dark Mode ── */
[data-theme="dark"] .homepage-lang-menu {
    background: rgba(15, 23, 42, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .homepage-lang-item {
    color: #cbd5e1;
}

[data-theme="dark"] .homepage-lang-item:hover {
    color: #ff8a6c;
    background: rgba(196, 49, 16, 0.15);
}

[data-theme="dark"] .homepage-lang-item.active {
    color: #ffffff;
    background: #c43110;
}

[data-theme="dark"] .about-logo-img.logo-dark {
    display: block;
}

[data-theme="dark"] .about-logo-img.logo-light {
    display: none;
}

[data-theme="dark"] .scroll-to-top-btn {
    background: rgba(15, 23, 42, 1.0);
    color: rgba(241, 245, 249, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* =============================================================================
   === 11. TOUCH & MOBILE ACCESSIBILITY ===
   ============================================================================= */

/* ── Light Mode ── */
/* ── 1. Tap targets — minimum 44×44px (WCAG 2.5.5) ── */



/* ── 2. Mobile nav backdrop overlay ── */

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-backdrop.show {
    display: block;
    opacity: 1;
}

/* ── 3. Touch feedback — active press state ── */

@media (hover: none) and (pointer: coarse) {
/* Suppress hover transforms that glitch on touch */
.nav-list li a:hover {
    transform: none !important;
}
.contact-item:hover {
    transform: none !important;
}
.btn-primary:hover,
    .btn-outline:hover {
    transform: none !important;
}
.program-card:hover {
    transform: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
}
.quick-play-btn:hover {
    transform: none !important;
}
.scroll-to-top-btn:hover {
    transform: none !important;
}
.programs-nav-btn:hover {
    transform: translateY(-50%) !important;
}
/* Active-press feedback */
.nav-list li a:active,
    .btn-primary:active,
    .btn-outline:active,
    .quick-play-btn:active,
    .scroll-to-top-btn:active,
    .programs-nav-btn:active,
    .swiper-button-next:active,
    .swiper-button-prev:active {
    opacity: 0.7;
    transform: scale(0.96);
    transition: transform 0.08s ease, opacity 0.08s ease;
}
/* Hero swiper buttons — bigger tap area on mobile */
.swiper-button-next,
    .swiper-button-prev {
    width: 48px !important;
    height: 48px !important;
}
/* Programs nav buttons — bigger tap area */
.programs-nav-btn {
    width: 52px !important;
    height: 52px !important;
}
/* Language dropdown — tap handled by JS; disable CSS hover-open */
.homepage-lang-dropdown:hover .homepage-lang-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
/* Momentum scrolling for page sections */
html, body {
    -webkit-overflow-scrolling: touch;
}
/* Swiper touch sensitivity — handled by Swiper internally */
}

/* ── 4. Nav menu mobile: slide-in animation ── */

@media (max-width: 1024px) {
.nav-menu {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity  0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
    opacity: 0;
}
.nav-menu.active {
    transform: translateX(0);
    opacity: 1;
}
/* Larger nav link tap targets on mobile */
.nav-list li a {
    padding: 16px 36px;
    width: 100%;
    justify-content: center;
}
/* Hero height: 100svh avoids mobile browser chrome covering content, but must be min-height so content can scroll */
.hero-section {
    aspect-ratio: auto;
    min-height: 70svh;
    height: 70svh;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
/* Programs wrap: smaller horizontal padding on mobile */
.programs-swiper-wrap {
    padding: 0 38px;
}
}

/* ── 5. Focus rings — visible on touch and keyboard ── */

:focus-visible {
    outline: 2px solid rgba(248, 68, 30, 1.0) !important;
    outline-offset: 3px !important;
    border-radius: 6px;
}

/* Remove Android tap blue flash, replace with brand color */

* {
    -webkit-tap-highlight-color: rgba(248, 68, 30, 0.12);
}

/* ── Dark Mode ── */
@media (hover: none) and (pointer: coarse) {
[data-theme="dark"] .program-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
}
}

/* =============================================================================
   === 12. ADVANCED EXPANSION FEATURES ===
   ============================================================================= */

/* ── Light Mode ── */
/* 1. Real Audio Visualizer */

#visualizerContainer {
    width: 100%;
    height: 120px;
    margin: 15px 0;
    position: relative;
    border-radius: 16px;
    background: transparent;
    border: none;
    overflow: hidden;
    display: none;
}

.visualizer-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* 2. Interactive Live Shoutbox Button & Drawer */

.shoutbox-trigger {
    position: fixed;
    bottom: calc(105px + env(safe-area-inset-bottom, 0px));
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #c43110;
    background: linear-gradient(135deg, #c43110 0%, #962208 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none;
    box-shadow: 0 10px 30px rgba(196, 49, 16, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shoutbox-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(248, 68, 30, 0.6);
}

.shoutbox-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.shoutbox-drawer input,
.shoutbox-drawer textarea,
.shoutbox-drawer button,
.shoutbox-drawer select {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.shoutbox-drawer.active {
    right: 0;
}

.shoutbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.shoutbox-backdrop.show {
    display: block;
    opacity: 1;
}

.shoutbox-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shoutbox-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 1.0);
    display: flex;
    align-items: center;
    gap: 10px;
}

.shoutbox-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.shoutbox-close:hover {
    color: rgba(255, 255, 255, 1.0);
}

.shoutbox-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

.shout-bubble {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 14px 16px;
    align-self: flex-start;
    max-width: 90%;
    position: relative;
    animation: slideUpFade 0.4s ease forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.shout-sender {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(248, 68, 30, 1.0);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shout-text {
    font-size: 0.95rem;
    color: rgba(241, 245, 249, 1.0);
    line-height: 1.4;
    word-break: break-word;
}

.shout-request {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 1.0);
    display: flex;
    align-items: center;
    gap: 6px;
}

.shout-bubble.penyiar-bubble {
    align-self: flex-end;
    margin-left: auto;
    border-left: 3px solid rgba(248, 68, 30, 1.0);
    background: rgba(248, 68, 30, 0.08);
    border-color: rgba(248, 68, 30, 0.18);
    box-shadow: 0 4px 16px rgba(248, 68, 30, 0.06);
}

[data-theme="light"] .shout-bubble.penyiar-bubble {
    background: rgba(248, 68, 30, 0.05);
    border-color: rgba(248, 68, 30, 0.12);
}

.shout-reply-to {
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 1.0);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 4px;
}

[data-theme="light"] .shout-reply-to {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.shoutbox-form {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 15, 30, 0.98);
}

.shout-input-group {
    margin-bottom: 12px;
}

.shout-input-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 1.0);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.shout-input {
    width: 100%;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.shout-input:focus {
    outline: none;
    border-color: #c43110;
    background: #1e293b;
}

.shoutbox-saweria-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #eab308;
    color: #000000;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background 0.3s ease;
}

.shoutbox-saweria-btn:hover {
    background: #ca8a04;
    color: #000000;
}

.shout-submit-btn {
    width: 100%;
    background: rgba(196, 49, 16, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.shout-submit-btn:hover {
    background: rgba(163, 34, 8, 1.0);
}

/* Mobile drawer scaling */

@media (max-width: 480px) {
.shoutbox-drawer {
    width: 100%;
    right: -100%;
}
.shoutbox-drawer.active ~ .floating-action-container {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
}

/* Light Mode Shoutbox overrides */
html:not([data-theme="dark"]) .shoutbox-drawer,
[data-theme="light"] .shoutbox-drawer {
    background: rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

html:not([data-theme="dark"]) .shoutbox-header,
[data-theme="light"] .shoutbox-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

html:not([data-theme="dark"]) .shoutbox-header h3,
[data-theme="light"] .shoutbox-header h3 {
    color: #0f172a;
}

html:not([data-theme="dark"]) .shoutbox-close,
[data-theme="light"] .shoutbox-close {
    color: rgba(15, 23, 42, 0.6);
}

html:not([data-theme="dark"]) .shoutbox-close:hover,
[data-theme="light"] .shoutbox-close:hover {
    color: #000000;
}

html:not([data-theme="dark"]) .shoutbox-messages,
[data-theme="light"] .shoutbox-messages {
    background: transparent;
}

html:not([data-theme="dark"]) .shoutbox-form,
[data-theme="light"] .shoutbox-form {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(248, 250, 252, 0.98);
}

html:not([data-theme="dark"]) .shout-input-group label,
[data-theme="light"] .shout-input-group label {
    color: #64748b;
}

html:not([data-theme="dark"]) .shout-input,
[data-theme="light"] .shout-input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #0f172a;
}

html:not([data-theme="dark"]) .shout-input:focus,
[data-theme="light"] .shout-input:focus {
    border-color: #c43110;
    background: #ffffff;
}

html:not([data-theme="dark"]) .shout-input::placeholder,
[data-theme="light"] .shout-input::placeholder {
    color: #94a3b8;
}

html:not([data-theme="dark"]) .shout-bubble,
[data-theme="light"] .shout-bubble {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

html:not([data-theme="dark"]) .shout-text,
[data-theme="light"] .shout-text {
    color: #334155;
}

html:not([data-theme="dark"]) .shout-request,
[data-theme="light"] .shout-request {
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
    color: #64748b;
}

html:not([data-theme="dark"]) .shout-reply-to,
[data-theme="light"] .shout-reply-to {
    color: #64748b;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

html:not([data-theme="dark"]) .shout-bubble.penyiar-bubble,
[data-theme="light"] .shout-bubble.penyiar-bubble {
    background: rgba(248, 68, 30, 0.05);
    border-color: rgba(248, 68, 30, 0.12);
}

/* 3. Podcasts / Siaran Tunda Section */

.podcasts-section {
    padding: 80px 0;
    background: rgba(248, 250, 252, 1.0);
}

.podcast-grid,
.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.podcast-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.podcast-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(248, 68, 30, 0.3);
    box-shadow: 0 20px 40px rgba(248, 68, 30, 0.08);
}

.podcast-icon {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 12px;
    background-color: rgba(196, 49, 16, 1.0);
    background: rgba(196, 49, 16, 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 1.0);
    margin-bottom: 20px;
    font-size: 3rem;
    box-shadow: 0 4px 12px rgba(196, 49, 16, 0.3);
}

.podcast-body {
    margin-bottom: 20px;
}

.podcast-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: rgba(15, 23, 42, 1.0);
    margin-bottom: 10px;
    transition: color 0.4s var(--ease);
}

.podcast-description {
    font-size: 0.85rem;
    color: rgba(100, 116, 139, 1.0);
    line-height: 1.5;
    min-height: 45px;
    transition: color 0.4s var(--ease);
}

.podcast-duration {
    font-size: 0.75rem;
    color: rgba(248, 68, 30, 1.0);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.podcast-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 250, 249, 1.0);
    background: rgba(255, 250, 249, 1.0);
    border: 1.5px solid rgba(196, 49, 16, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(140, 20, 0, 1.0);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.podcast-play-btn:hover {
    background-color: rgba(196, 49, 16, 1.0);
    background: rgba(196, 49, 16, 1.0);
    border-color: rgba(196, 49, 16, 1.0);
    color: rgba(255, 255, 255, 1.0);
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(196, 49, 16, 0.35);
}

/* Empty Placeholder Styling */
.podcast-empty-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.podcast-empty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 250, 249, 1.0);
    background: rgba(255, 250, 249, 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(140, 20, 0, 1.0);
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.podcast-empty-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: rgba(15, 23, 42, 1.0);
    margin-bottom: 10px;
    transition: color 0.4s var(--ease);
}

.podcast-empty-desc {
    color: rgba(100, 116, 139, 1.0);
    font-size: 0.85rem;
    line-height: 1.5;
    transition: color 0.4s var(--ease);
}

/* ── Dark Mode Overrides ── */
[data-theme="dark"] .podcast-card {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .podcast-card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(248, 68, 30, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .podcast-title {
    color: rgba(255, 255, 255, 1.0);
}

[data-theme="dark"] .podcast-description {
    color: rgba(148, 163, 184, 1.0);
}

[data-theme="dark"] .podcast-play-btn {
    background-color: rgba(30, 41, 59, 1.0);
    background: rgba(30, 41, 59, 1.0);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1.0);
}

[data-theme="dark"] .podcast-play-btn:hover {
    background-color: rgba(196, 49, 16, 1.0);
    background: rgba(196, 49, 16, 1.0);
    border-color: rgba(196, 49, 16, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

[data-theme="dark"] .podcast-empty-card {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .podcast-empty-title {
    color: rgba(255, 255, 255, 1.0);
}

[data-theme="dark"] .podcast-empty-desc {
    color: rgba(148, 163, 184, 1.0);
}

/* 4. Sponsorship Ads Placements */

.ad-banner-zone {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.ad-banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.ad-banner-image:hover {
    transform: scale(1.02);
}

/* Premium Promo Pop-Up Overlay */

.promo-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-popup-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-popup-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-popup-backdrop.active .promo-popup-content {
    transform: scale(1) translateY(0);
}

.promo-popup-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-popup-close:hover {
    background: rgba(196, 49, 16, 1.0);
    border-color: rgba(196, 49, 16, 1.0);
    transform: rotate(90deg);
}

.promo-popup-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Dark Mode ── */
[data-theme="dark"] .shout-reply-to {
    color: rgba(148, 163, 184, 1.0);
}

[data-theme="dark"] .podcasts-section {
    background: rgba(2, 6, 23, 1.0);
}

/* =============================================================================
   === 13. PREMIUM MODERN FEATURES ===
   ============================================================================= */

/* ── Light Mode ── */
/* 1. Overlapping Layout */

.overlap-top {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

/* 2. Infinite Marquee */

.marquee-container {
    background: #c43110;
    background: linear-gradient(90deg, #a32208, #c43110);
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0 40px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* 4. Glassmorphism & Hover */

.program-card, .podcast-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.program-card:hover, .podcast-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(248, 68, 30, 0.2);
    border-color: rgba(248, 68, 30, 1.0);
}



.program-card:hover .program-card-info h4 {
    color: rgba(248, 68, 30, 1.0);
}

/* 5. Parallax Background & Counters */

.parallax-stats {
    position: relative;
    padding: 80px 0;
    color: rgba(255, 255, 255, 1.0);
    background-color: #0f172a;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.parallax-stats::before {
    content: '';
    position: absolute;
    inset: -15px;
    background-image: var(--parallax-bg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(4px);
    z-index: 0;
}

.parallax-stats::after {
    content: '';
    position: absolute;
    inset: -15px;
    background: rgba(15, 23, 42, 0.85);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(248, 68, 30, 1.0);
    margin-bottom: 5px;
    text-shadow: 0 4px 20px rgba(248, 68, 30, 0.4);
}

.stat-item p {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 1.0);
}

/* 6. Sticky Floating Mini-Player */

.sticky-mini-player {
    position: fixed;
    bottom: 24px;
    left: 16px;
    right: 92px; /* 56px button + 24px margin + 12px gap */
    transform: translateY(120%);
    max-width: 360px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 40px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                visibility 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    visibility: hidden;
}



.mini-player-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 1.0);
}

.mini-album-art {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.mini-album-art.playing {
    animation: spin 8s linear infinite;
}

.mini-player-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-info p {
    font-size: 0.68rem;
    color: rgba(148, 163, 184, 1.0);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mini-controls button {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 49, 16, 1.0), rgba(150, 34, 8, 1.0));
    color: rgba(255, 255, 255, 1.0);
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(196, 49, 16, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-controls button:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(248, 68, 30, 0.6);
}

/* 7. Abstract Blobs & Particles */

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: float 20s infinite alternate;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(248, 68, 30, 0.3);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(180deg); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* 9. Asymmetrical Grid (Masonry effect) */

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    grid-auto-flow: dense;
}

.masonry-item:nth-child(3n+1) {
    grid-row: span 2;
}

.masonry-item:nth-child(4n) {
    grid-column: span 2;
}

@media (max-width: 768px) {
.masonry-item:nth-child(n) {
    grid-row: span 1;
    grid-column: span 1;
}
}

/* Top Chart */

#chart {
    background: rgba(248, 250, 252, 1.0);
    transition: background 0.4s var(--ease);
}

[data-theme="dark"] #chart {
    background: rgba(15, 23, 42, 1.0);
}

[data-theme="dark"] #chart .section-header h2 {
    color: rgba(255, 255, 255, 1.0);
}

[data-theme="dark"] #chart .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] #chart .section-header .underline {
    background: rgba(255, 255, 255, 1.0);
}

.chart-item {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.chart-item:hover {
    transform: translateX(10px);
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.chart-rank {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 202, 40, 1.0);
    min-width: 40px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chart-cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.chart-info {
    flex-grow: 1;
}

.chart-info h4 {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1.0);
    font-weight: 700;
}

.chart-info p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.chart-status {
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.1rem;
}

.status-up {
    color: rgba(16, 185, 129, 1.0);
}

.status-down {
    color: rgba(255, 138, 128, 1.0);
}

.status-same {
    color: rgba(255, 255, 255, 0.6);
}

/* Chart Responsive Grid */

.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.chart-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
.chart-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}
}

/* Announcers */

.announcer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.announcer-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 3/4;
}

.announcer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s, transform 0.5s;
    filter: grayscale(100%);
}

.announcer-card:hover .announcer-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.announcer-info {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    transition: bottom 0.4s;
}

.announcer-card:hover .announcer-info {
    bottom: 0;
}

.announcer-info h4 {
    color: rgba(255, 255, 255, 1.0);
    margin: 0;
    font-size: 1.2rem;
}

.announcer-social a {
    color: rgba(248, 68, 30, 1.0);
    margin-right: 12px;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.announcer-social a:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.15);
}

/* Articles Grid & Pagination */

.article-grid-wrapper {
    width: 100%;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    /* Schedule Table Card-ification */
    .schedule-table,
    .schedule-table tbody,
    .schedule-table tr,
    .schedule-table td {
        display: block;
        width: 100%;
    }
    .schedule-table thead {
        display: none;
    }
    .schedule-table tbody tr {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        gap: 6px;
        transition: background 0.3s;
    }
    [data-theme="dark"] .schedule-table tbody tr {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .schedule-table tbody td {
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }
    /* Time slot */
    .schedule-table tbody td:nth-child(1) {
        font-size: 0.8rem;
        font-weight: 700;
        color: rgba(248, 68, 30, 1.0);
        margin-bottom: 2px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .schedule-table tbody td:nth-child(1)::before {
        content: "\f017";
        font-family: "Font Awesome 6 Free", sans-serif;
        font-weight: 900;
        font-size: 0.78rem;
        opacity: 0.8;
    }
    /* Program title */
    .schedule-table tbody td:nth-child(2) {
        font-size: 1rem;
        font-weight: 700;
        color: inherit;
    }
    /* Announcer */
    .schedule-table tbody td:nth-child(3) {
        font-size: 0.82rem;
        color: rgba(100, 116, 139, 1.0);
        margin-top: 2px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    [data-theme="dark"] .schedule-table tbody td:nth-child(3) {
        color: rgba(148, 163, 184, 1.0);
    }
    .schedule-table tbody td:nth-child(3)::before {
        content: "\f130";
        font-family: "Font Awesome 6 Free", sans-serif;
        font-weight: 900;
        font-size: 0.78rem;
        opacity: 0.8;
        color: rgba(248, 68, 30, 1.0);
    }

    /* Grid Paginators Mobile Optimizations */
    .article-pagination-wrapper {
        justify-content: center;
        margin-top: 25px;
        width: 100%;
    }
    .article-pagination {
        padding: 4px 8px;
        gap: 4px;
        border-radius: 20px;
    }
    .page-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .page-btn.prev-next {
        font-size: 0.75rem;
        padding: 0 10px;
        width: auto;
        border-radius: 16px;
    }
}

.article-card {
    background: rgba(255, 255, 255, 1.0);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(248, 68, 30, 0.2);
}

.article-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.article-content {
    padding: 24px;
}

.article-content h4 {
    color: rgba(15, 23, 42, 1.0);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-date {
    color: rgba(100, 116, 139, 1.0);
    font-size: 0.88rem;
    margin-bottom: 15px;
    display: block;
}

.article-btn {
    display: inline-block;
    padding: 8px 22px;
    background: #c43110;
    color: #ffffff;
    border: none;
    outline: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.article-btn:hover {
    background: #a32208;
    box-shadow: 0 4px 12px rgba(196, 49, 16, 0.3);
    color: #ffffff;
    border: none;
}

/* Pagination Styling at Bottom Right */

.article-pagination-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
}

.article-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 1.0);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.page-btn {
    border: none;
    background: transparent;
    color: rgba(15, 23, 42, 1.0);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: #fdf3f1;
    color: #a32208;
}

.page-btn.active {
    background: rgba(196, 49, 16, 1.0);
    color: rgba(255, 255, 255, 1.0) !important;
    box-shadow: 0 4px 12px rgba(196, 49, 16, 0.3);
}

.page-btn.ellipsis {
    cursor: default;
    opacity: 0.5;
}

.page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.page-btn.prev-next {
    font-size: 0.85rem;
}

/* Article Details Modal */

.article-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.article-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.article-modal-card {
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    padding: 30px;
}

.article-modal-backdrop.active .article-modal-card {
    transform: translateY(0);
}

.article-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: rgba(100, 116, 139, 1.0);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 10;
    line-height: 1;
}

.article-modal-close:hover {
    color: rgba(248, 68, 30, 1.0);
    transform: scale(1.1);
}

.article-modal-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.article-modal-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 1.0);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-modal-meta {
    font-size: 0.88rem;
    color: rgba(100, 116, 139, 1.0);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 15px;
}

.article-modal-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(15, 23, 42, 1.0);
}

/* Masonry Gallery */

.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 1.0);
    font-weight: 700;
    font-size: 1.1rem;
}

@media(max-width: 768px) {
.gallery-masonry {
    column-count: 2;
}
}

@media(max-width: 480px) {
.gallery-masonry {
    column-count: 1;
}
}

/* Media Partners Split Layout Redesign */

.partners-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    position: relative;
    z-index: 10;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

[data-theme="dark"] .partners-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.partners-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partners-badge {
    background: rgba(248, 68, 30, 0.1);
    color: rgba(248, 68, 30, 1.0);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: inset 0 0 10px rgba(248, 68, 30, 0.05);
}

.partners-title-block h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: rgba(15, 23, 42, 1.0);
    letter-spacing: -0.5px;
}

.partners-title-block p {
    font-size: 0.95rem;
    color: rgba(100, 116, 139, 1.0);
    line-height: 1.6;
}

.partners-logos-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 25px 0 35px 0; /* plenty of space for vertical alignment and tooltip at bottom */
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.partners-logos-track {
    display: flex;
    width: max-content;
    animation: partners-marquee-scroll 25s linear infinite;
}

.partners-logos-marquee:hover .partners-logos-track {
    animation-play-state: paused;
}

.partners-logos-group {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px; /* must exactly match the gap for a mathematically perfect loop */
    flex-shrink: 0;
}

.partner-logo-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative; /* essential for absolute tooltip positioning */
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.partner-logo {
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.partner-logo-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
}

/* Glassmorphic Premium Tooltip */
.partner-name-tooltip {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

/* Tooltip Arrow */
.partner-name-tooltip::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: rgba(15, 23, 42, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo-card:hover .partner-name-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes partners-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-empty-wrapper {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.partners-empty {
    color: rgba(100, 116, 139, 1.0);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .partners-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .partners-title-block {
        align-items: center;
    }
    .partner-logo-card {
        height: 44px;
    }
}

@media (max-width: 480px) {
    .partner-logo-card {
        height: 36px;
    }
    .partner-logo {
        height: 24px;
    }
}

/* Testimonials */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
    width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(248, 68, 30, 1.0), #ff6b4a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(248, 68, 30, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-icon {
    font-size: 2rem;
    color: rgba(248, 68, 30, 1.0);
    margin-bottom: 20px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-icon {
    transform: scale(1.1);
}

.testimonial-content {
    font-size: 1rem;
    font-style: italic;
    color: rgba(241, 245, 249, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-stars {
    color: rgba(251, 191, 36, 1.0);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Dark Mode ── */
[data-theme="dark"] .article-card {
    background: rgba(15, 23, 42, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .article-content h4 {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .article-date {
    color: rgba(148, 163, 184, 1.0);
}

[data-theme="dark"] .article-pagination {
    background: rgba(15, 23, 42, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .page-btn {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .article-modal-card {
    background: rgba(15, 23, 42, 1.0);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .article-modal-close {
    color: rgba(148, 163, 184, 1.0);
}

[data-theme="dark"] .article-modal-card h3 {
    color: rgba(241, 245, 249, 1.0);
}

[data-theme="dark"] .article-modal-meta {
    color: rgba(148, 163, 184, 1.0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .article-modal-body {
    color: rgba(241, 245, 249, 1.0);
}

/* =============================================================================
   === 14. USER REQUESTED UI TWEAKS ===
   ============================================================================= */

/* ── Light Mode ── */

@media (max-width: 1024px) {
/* Mobile: Show a compact play button inside the player card; hide the full controls row */
.controls-wrapper {
    display: none !important;
}
/* Show a small play button visible below the visualizer on mobile */
.player-mobile-play {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 49, 16, 1.0), rgba(150, 34, 8, 1.0));
    color: rgba(255, 255, 255, 1.0);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(196, 49, 16, 0.45);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.player-mobile-play:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(196, 49, 16, 0.6);
}
}

/* =============================================================================
   === 15. SCROLL-DEPENDENT STATE MANAGEMENT (ANTIGRAVITY TRANSITIONS) ===
   ============================================================================= */

.floating-action-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 124px; /* Space for 2 buttons (56x2 + 12 gap) */
    pointer-events: none;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.3s ease;
}

.shoutbox-drawer.active ~ .floating-action-container {
    right: 424px;
}

.floating-action-container button {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: auto;
}

.quick-scroll-up-btn,
.floating-chat-btn,
.quickplay-circular {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 1.3rem;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                visibility 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease,
                box-shadow 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.25));
}

/* Quick Scroll Up Button */
.quick-scroll-up-btn {
    background: #1e293b;
    color: #cbd5e1;
}
.quick-scroll-up-btn:hover {
    background: #334155;
    color: #f1f5f9;
}

/* Floating Chat Button */
.floating-chat-btn {
    background: #4f46e5;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}
.floating-chat-btn:hover {
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
}

/* Quick Play Circular */
.quickplay-circular {
    background: linear-gradient(135deg, #c43110, #962208);
    color: #fff;
    box-shadow: 0 4px 15px rgba(196, 49, 16, 0.45);
}
.quickplay-circular:hover {
    box-shadow: 0 8px 25px rgba(196, 49, 16, 0.55);
}

.quickplay-centered-popup {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                visibility 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* STATE A (Hero Section is Intersecting / User is at top) */
body:not(.is-scrolled) .quickplay-centered-popup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(120%);
    pointer-events: none;
}

body:not(.is-scrolled) .floating-chat-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0); /* Anchored at bottom slot */
}

body:not(.is-scrolled) .quick-scroll-up-btn {
    opacity: 0;
    visibility: hidden;
    transform: scale(0) translateY(0); /* Hidden at the bottom slot */
}

/* STATE B (Hero Section is NOT Intersecting / User scrolled down) */
body.is-scrolled .quickplay-centered-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.is-scrolled .floating-chat-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(-68px); /* Moves up to make room */
}

body.is-scrolled .quick-scroll-up-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0); /* Appears in the bottom slot */
}

/* Micro-interaction Hover Offset States */
body:not(.is-scrolled) .floating-chat-btn:hover {
    transform: scale(1.08) translateY(-2px);
}

body.is-scrolled .floating-chat-btn:hover {
    transform: scale(1.08) translateY(-70px);
}

body.is-scrolled .quick-scroll-up-btn:hover {
    transform: scale(1.08) translateY(-2px);
}

/* =============================================================================
   === 09. SPONSORSHIP AD INTEGRATIONS ===
   ============================================================================= */

/* Zone A - Premium Sponsor Banner (Horizontal Showcase Redesign) */

.ad-premium-horizontal-showcase {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.4) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    overflow: hidden;
    z-index: 10;
    transition: all 0.4s var(--ease);
}

[data-theme="dark"] .ad-premium-horizontal-showcase {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(9, 15, 30, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ad-showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ad-showcase-header {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ad-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.05);
    color: rgba(71, 85, 105, 1.0);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(15, 23, 42, 0.03);
    box-shadow: inset 0 0 8px rgba(15, 23, 42, 0.02);
}

[data-theme="dark"] .ad-showcase-badge {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(148, 163, 184, 1.0);
    border-color: rgba(255, 255, 255, 0.03);
}

.ad-pulse-dot {
    width: 6px;
    height: 6px;
    background: rgba(248, 68, 30, 1.0);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.ad-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(248, 68, 30, 0.5);
    border-radius: 50%;
    animation: adPulse 1.8s infinite ease-in-out;
}

@keyframes adPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

.ad-showcase-slider-wrapper {
    position: relative;
    max-width: 970px; /* Standard leaderboard banner size */
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.ad-showcase-track {
    position: relative;
    width: 100%;
    height: 110px;
}

.ad-showcase-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.97) translateY(5px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    z-index: 1;
}

.ad-showcase-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.ad-showcase-card {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .ad-showcase-card {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ad-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(248, 68, 30, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.ad-showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 68, 30, 0.25);
    box-shadow: 0 20px 40px rgba(248, 68, 30, 0.08);
}

[data-theme="dark"] .ad-showcase-card:hover {
    border-color: rgba(248, 68, 30, 0.3);
    box-shadow: 0 20px 45px rgba(248, 68, 30, 0.12);
}

.ad-showcase-card:hover .ad-card-glow {
    opacity: 1;
}

.ad-image-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #ffffff;
}

[data-theme="dark"] .ad-image-container {
    background: #ffffff;
}

.ad-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ad-showcase-card:hover .ad-banner-img {
    transform: scale(1.02);
}

/* Stunning Shimmer reflection effect on hover */
.ad-shimmer-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15) 50%, transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.ad-showcase-card:hover .ad-shimmer-sweep {
    animation: adShimmer 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes adShimmer {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Dots navigation system */
.ad-showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.ad-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .ad-dot {
    background: rgba(255, 255, 255, 0.15);
}

.ad-dot.active {
    width: 24px;
    border-radius: 5px;
    background: rgba(248, 68, 30, 1.0);
}

@media (max-width: 992px) {
    .ad-showcase-track {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .ad-premium-horizontal-showcase {
        padding: 20px 0;
    }
    .ad-showcase-track {
        height: 70px;
    }
    .ad-showcase-card {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .ad-showcase-track {
        height: 55px;
    }
}

.ad-card-premium {
    transition: all 0.3s var(--ease);
}

/* Zone B - Integrated Sponsor Ad Card inside News Grid */
.ad-card-integrated {
    position: relative;
    border: 1px solid rgba(248, 68, 30, 0.25) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1.0) 0%, rgba(248, 68, 30, 0.02) 100%) !important;
    box-shadow: 0 10px 30px rgba(248, 68, 30, 0.05) !important;
}

[data-theme="dark"] .ad-card-integrated {
    border: 1px solid rgba(248, 68, 30, 0.3) !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1.0) 0%, rgba(248, 68, 30, 0.04) 100%) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4) !important;
}

.ad-card-integrated:hover {
    border-color: rgba(248, 68, 30, 0.5) !important;
    box-shadow: 0 20px 50px rgba(248, 68, 30, 0.15) !important;
}

.ad-badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c43110;
    background: linear-gradient(135deg, #c43110, #962208);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(196, 49, 16, 0.4);
    text-transform: uppercase;
}

.article-img-ad {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.article-img-ad img {
    transition: transform 0.5s ease;
}

.ad-card-integrated:hover .article-img-ad img {
    transform: scale(1.05);
}

/* Desktop horizontal centering for quickplay sticky mini-player */
@media (min-width: 768px) {
    .sticky-mini-player {
        left: 50% !important;
        right: auto !important;
    }
    
    body:not(.is-scrolled) .quickplay-centered-popup {
        transform: translateX(-50%) translateY(120%) !important;
    }
    
    body.is-scrolled .quickplay-centered-popup {
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* Smartphone View: Hide Viewport Scrollbars */
@media (max-width: 1024px) {
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    html, body {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }
}

