/* ============================================
   SHILOH RADIO CR — Design System
   Refined neon aesthetic · Dark · Editorial
   ============================================ */

:root {
    /* Core palette */
    --bg-deep: #05060f;
    --bg-dark: #0a0e27;
    --bg-elevated: #111638;
    --bg-surface: #1a1f3a;
    
    /* Accent colors */
    --accent-cyan: #00d4ff;
    --accent-cyan-soft: rgba(0, 212, 255, 0.15);
    --accent-violet: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-gold: #fbbf24;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dim: rgba(255, 255, 255, 0.35);
    
    /* Borders & dividers */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-default: rgba(255, 255, 255, 0.12);
    --border-bright: rgba(0, 212, 255, 0.4);
    
    /* Typography */
    --font-display: 'Syncopate', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Effects */
    --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.3);
    --glow-violet: 0 0 60px rgba(139, 92, 246, 0.25);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 6, 15, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-mark {
    color: var(--accent-gold);
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.05em;
}

.brand-name em {
    color: var(--accent-cyan);
    font-style: normal;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.btn-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-cyan), #0099cc);
    color: var(--bg-deep);
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.btn-live:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff3366;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============================================
   HERO
   ============================================ */

/* ============================================
   HERO MAIN (Logo + Player unificado)
   ============================================ */

.hero-main {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-main-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.hero-logo {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.25));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-player-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-player-wrap .player-live-badge {
    align-self: flex-start;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-player-wrap .live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-player-wrap .mytuner-widget-wrapper {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.08);
}

.hero-player-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.hero-player-stats .stat-item {
    text-align: center;
}

.hero-player-stats .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.hero-player-stats .stat-label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Mobile - stack vertical */
@media (max-width: 900px) {
    .hero-main-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-logo {
        max-width: 360px;
    }
    
    .hero-main {
        padding: 120px 0 60px;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        max-width: 280px;
    }
    
    .hero-player-stats .stat-number {
        font-size: 22px;
    }
    
    .hero-player-stats .stat-label {
        font-size: 9px;
    }
}

/* ============================================
   HERO (legacy)
   ============================================ */

.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 40%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 15s ease-in-out infinite;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-violet);
    opacity: 0.15;
    top: -10%;
    left: -10%;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    opacity: 0.1;
    bottom: -20%;
    right: -10%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.tagline-line {
    width: 40px;
    height: 1px;
    background: var(--accent-cyan);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.title-row {
    display: block;
    animation: fadeInUp 1s ease-out backwards;
}

.title-row:nth-child(1) { animation-delay: 0.1s; }
.title-row:nth-child(2) { animation-delay: 0.2s; }
.title-row:nth-child(3) { animation-delay: 0.3s; }
.title-row:nth-child(4) { animation-delay: 0.4s; }

.title-emphasis {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.2em;
}

.hero-title em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-cyan);
    color: var(--bg-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glow-cyan);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--border-default);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--text-muted) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */

section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
    max-width: 700px;
}

.section-number {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--accent-cyan);
    letter-spacing: 0.3em;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--accent-cyan);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
}

/* ============================================
   PLAYER SECTION
   ============================================ */

.player-section {
    background: 
        radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%),
        var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.player-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.player-frame {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
    border: 1px solid var(--border-default);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: 
        var(--shadow-card),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.player-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-cyan), transparent 50%, var(--accent-violet));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.player-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 51, 102, 0.15);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ff3366;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #ff3366;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #ff3366;
}

.player-quality {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.widget-container {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    min-height: 75px;
}

/* ============================================
   SHILOH PLAYER (Iframe-based)
   ============================================ */

.shiloh-player {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
    position: relative;
}

/* Hero section — station branding */
.player-hero {
    position: relative;
    padding: 40px 32px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}

.player-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.25) 0%, transparent 50%);
    z-index: 0;
}

.player-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.player-hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.player-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fallback-mark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.player-hero-info {
    flex: 1;
    min-width: 0;
}

.player-hero-label {
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--accent-cyan);
    letter-spacing: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.player-hero-name {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.player-hero-tag {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* myTuner Widget Wrapper (integrated with dark neon theme) */
.mytuner-widget-wrapper {
    background: var(--bg-dark);
    position: relative;
}

.mytuner-widget-wrapper .mytuner-widget {
    border: none !important;
    border-radius: 0 !important;
}

/* Song history list styling (dark theme) */
.mytuner-widget-wrapper ul#PcO6XXA\+JMOVP8K5w6cwOsOURz\/DvFfDl27DmcK\+song-history li {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1) !important;
}

/* External link */
.player-external-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: rgba(0, 212, 255, 0.05);
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-top: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.player-external-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-primary);
}

.player-external-link svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 640px) {
    .player-hero {
        padding: 28px 20px;
    }
    
    .player-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .player-hero-logo {
        width: 80px;
        height: 80px;
    }
}

.player-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs-section {
    background: var(--bg-deep);
}

/* ============================================
   PROGRAMS SECTION — Time blocks layout
   ============================================ */

/* FEATURED PROGRAM (ancla) */
.program-feature-block {
    margin-bottom: 60px;
}

.program-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.program-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan), var(--accent-violet));
}

.program-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-cyan);
    color: var(--bg-deep);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.program-name-big {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.feature-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.schedule-time {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--accent-cyan);
    letter-spacing: 0.03em;
    font-weight: 700;
}

/* TIME BLOCKS (franjas horarias) */
.time-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.time-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s ease;
}

.time-block:hover {
    border-color: var(--border-bright);
    background: rgba(0, 212, 255, 0.02);
}

.time-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.time-icon {
    font-size: 22px;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    line-height: 1;
}

.time-block-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-transform: uppercase;
    flex: 1;
}

.time-block-range {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.time-block-programs {
    display: flex;
    flex-direction: column;
}

.program-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    align-items: center;
    transition: all 0.3s ease;
}

.program-row:last-child {
    border-bottom: none;
}

.program-row:hover {
    padding-left: 8px;
}

.program-row-time {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
}

.program-row-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-row-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.program-row-days {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    font-style: italic;
}

.program-row.highlight {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.08), transparent);
    padding: 16px 14px;
    border-radius: 10px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin: 4px 0;
}

.program-row.highlight .program-row-time {
    color: var(--accent-gold);
}

.program-row.highlight .program-row-name {
    color: var(--accent-gold);
}

@media (max-width: 640px) {
    .program-card.featured {
        padding: 28px 20px;
    }
    
    .time-block {
        padding: 20px;
    }
    
    .program-row {
        grid-template-columns: 70px 1fr;
        gap: 12px;
    }
    
    .program-row-name {
        font-size: 15px;
    }
}

/* ============================================
   COUNTRIES SECTION
   ============================================ */

.countries-section {
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 70%),
        var(--bg-deep);
}

.countries-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.country-group .group-title {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.country-list span {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.country-list span:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--border-bright);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.impact-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    position: relative;
}

.impact-quote blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--border-bright);
    background: rgba(0, 212, 255, 0.04);
    transform: translateY(-2px);
}

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.contact-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.director-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 32px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(139, 92, 246, 0.06));
    border: 1px solid var(--border-default);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.director-label {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.director-name {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.director-motto {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.director-year {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-brand {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo .brand-mark {
    font-size: 32px;
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.05em;
}

.footer-name em {
    color: var(--accent-cyan);
    font-style: normal;
    font-weight: 400;
}

.footer-tag {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.footer-motto {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-scripture {
    font-style: italic;
    max-width: 500px;
    text-align: right;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .player-frame {
        padding: 20px;
    }
    
    .player-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .countries-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-scripture {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .btn-live span:not(.live-dot) {
        display: none;
    }
    
    .btn-live {
        padding: 10px 14px;
    }
}

/* ============================================
   UTILITY & ACCESSIBILITY
   ============================================ */

*:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection {
    background: var(--accent-cyan);
    color: var(--bg-deep);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}
