:root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-card: #111111;
    --black-elevated: #1a1a1a;
    --red: #C8102E;
    --red-hover: #e01435;
    --red-glow: rgba(200, 16, 46, 0.35);
    --grey: #6b6b6b;
    --grey-light: #a3a3a3;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Zilla Slab', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    --transition: 0.25s ease;
    --header-height: 84px;
    --player-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    padding-bottom: var(--player-height);
    overflow-x: hidden;
}

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

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

.container {
    width: min(1200px, calc(100% - 2rem));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hidden { display: none !important; }

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    animation: pulse 1.5s infinite;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    overflow: visible;
}

.site-header.scrolled { background: rgba(0, 0, 0, 0.95); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1rem;
}

.brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    padding: 4px 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.brand-logo--header {
    width: 96px;
    max-width: min(96px, 28vw);
    height: auto;
    margin: -10px 0;
    filter: brightness(1.55) contrast(1.12) drop-shadow(0 1px 6px rgba(255, 255, 255, 0.12));
}

.brand-logo--footer {
    width: 200px;
    max-width: min(200px, 70vw);
    height: auto;
    margin-bottom: 1.25rem;
    filter: brightness(1.55) contrast(1.12) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav a {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-light);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.site-nav a.active { color: var(--red); }

.header-listen { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(200, 16, 46, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(200, 16, 46, 0.08), transparent),
        var(--black);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 4rem;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-text p {
    color: var(--grey-light);
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-cities span {
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--grey-light);
}

.hero-card {
    background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.hero-card .brand-logo {
    max-height: 120px;
    max-width: 180px;
    width: auto;
    margin: 0 auto 2rem;
}

.now-playing {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.now-playing .label {
    display: block;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.now-playing strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.now-playing p { color: var(--grey-light); font-size: 0.9rem; }

.broadcast-showcase {
    display: grid;
    gap: 1rem;
    position: relative;
}

.broadcast-premium-wrap {
    position: relative;
}

.broadcast-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.22) 0%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
    z-index: 0;
}

.broadcast-showcase.playing .broadcast-glow {
    animation: broadcastGlow 4s ease-in-out infinite;
}

@keyframes broadcastGlow {
    0%, 100% { opacity: 0.55; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

.broadcast-frame {
    position: relative;
    z-index: 1;
    padding: 2px;
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.75), rgba(255, 255, 255, 0.12), rgba(200, 16, 46, 0.35));
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.broadcast-frame-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--black-card);
    aspect-ratio: 16 / 10;
}

.broadcast-studio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.broadcast-showcase.playing .broadcast-studio-image {
    transform: scale(1.06);
}

.broadcast-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.5) 2px,
        rgba(255, 255, 255, 0.5) 4px
    );
}

.broadcast-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.broadcast-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.82) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1.1rem;
}

.broadcast-meta-top,
.broadcast-meta-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.broadcast-signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.signal-bar {
    width: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.signal-bar:nth-child(1) { height: 6px; }
.signal-bar:nth-child(2) { height: 9px; }
.signal-bar:nth-child(3) { height: 12px; }
.signal-bar:nth-child(4) { height: 15px; }
.signal-bar:nth-child(5) { height: 18px; background: #22c55e; }

.broadcast-showcase.playing .signal-bar {
    background: #22c55e;
    animation: signalPulse 1.2s ease-in-out infinite;
}

.broadcast-showcase.playing .signal-bar:nth-child(1) { animation-delay: 0s; }
.broadcast-showcase.playing .signal-bar:nth-child(2) { animation-delay: 0.1s; }
.broadcast-showcase.playing .signal-bar:nth-child(3) { animation-delay: 0.2s; }
.broadcast-showcase.playing .signal-bar:nth-child(4) { animation-delay: 0.3s; }
.broadcast-showcase.playing .signal-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes signalPulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}

.on-air-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem 0.5rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.95), rgba(160, 10, 35, 0.95));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    font-family: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 32px rgba(200, 16, 46, 0.45);
    backdrop-filter: blur(10px);
}

.live-ring {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 1px solid rgba(200, 16, 46, 0.55);
    animation: liveRing 2s ease-out infinite;
}

@keyframes liveRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
}

.on-air-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(200, 16, 46, 0.55);
}

.broadcast-showcase.playing .on-air-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.92), rgba(22, 163, 74, 0.92));
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
}

.broadcast-center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.broadcast-center-play svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.broadcast-center-play-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(200, 16, 46, 0.45);
    animation: liveRing 2.4s ease-out infinite;
}

.broadcast-center-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(200, 16, 46, 0.75);
    box-shadow: 0 20px 56px rgba(200, 16, 46, 0.4);
}

.broadcast-showcase.playing .broadcast-center-play {
    background: rgba(200, 16, 46, 0.85);
}

.broadcast-showcase.playing .broadcast-center-play svg {
    opacity: 0;
}

.broadcast-showcase.playing .broadcast-center-play::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 2px;
    clip-path: inset(0 35% 0 35%);
}

.broadcast-freq {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.audio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 36px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.audio-visualizer span {
    width: 3px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
}

.broadcast-showcase.playing .audio-visualizer span {
    background: linear-gradient(180deg, #4ade80, #22c55e);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.45);
    animation: visualizer 1.1s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.06s);
}

@keyframes visualizer {
    0%, 100% { height: 8px; opacity: 0.4; }
    50% { height: 28px; opacity: 1; }
}

.broadcast-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: rgba(200, 16, 46, 0.65);
    border-style: solid;
    pointer-events: none;
    z-index: 3;
}

.corner-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.corner-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.corner-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.corner-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.premium-broadcast-card {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.92), rgba(12, 12, 12, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.premium-broadcast-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.65), transparent);
}

.now-playing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.live-indicator .label {
    margin-bottom: 0;
    font-size: 0.72rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.14em;
}

.live-badge-pill {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(200, 16, 46, 0.18);
    border: 1px solid rgba(200, 16, 46, 0.45);
}

.broadcast-headline {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.broadcast-tagline {
    color: var(--grey-light);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.now-broadcast-card {
    text-align: left;
}

.now-broadcast-card .now-playing {
    padding-top: 0;
    border-top: 0;
}

.stream-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.stream-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    text-align: left;
    overflow: hidden;
}

.stream-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.stream-btn:hover,
.stream-btn.active {
    border-color: rgba(200, 16, 46, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 16, 46, 0.15);
}

.stream-btn:hover::before,
.stream-btn.active::before {
    opacity: 1;
}

.stream-btn.active {
    background: linear-gradient(145deg, rgba(200, 16, 46, 0.14), rgba(200, 16, 46, 0.04));
}

.stream-btn-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-hover));
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.35);
}

.stream-btn-icon svg {
    width: 16px;
    height: 16px;
}

.stream-btn-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stream-btn-text strong {
    font-size: 0.95rem;
    line-height: 1.2;
}

.stream-btn-text small {
    color: var(--grey-light);
    font-size: 0.75rem;
}

.stream-btn-wave {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grey);
    opacity: 0.35;
}

.stream-btn.active .stream-btn-wave {
    background: #22c55e;
    opacity: 1;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.65);
    animation: signalPulse 1.2s ease-in-out infinite;
}

.stream-empty,
.now-playing-langs {
    color: var(--grey-light);
    font-size: 0.85rem;
}

.now-playing-langs {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.broadcast-banner-section {
    padding: 0 0 2rem;
}

.broadcast-banner-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-height: 220px;
}

.broadcast-banner-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.broadcast-banner-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.broadcast-banner-caption h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 0.35rem;
}

/* Sections */
.section { padding: 5rem 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p { color: var(--grey-light); }

.section-cta { text-align: center; margin-top: 2.5rem; }

.page-hero {
    padding: calc(var(--header-height) + 4rem) 0 3rem;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 16, 46, 0.12), transparent),
        var(--black);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--grey-light);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 16, 46, 0.15);
    margin-bottom: 1.25rem;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 12px;
    background: var(--red);
    border-radius: 4px;
    opacity: 0.8;
}

.icon-globe::after { border-radius: 50%; }
.icon-heart::after { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); inset: 14px; }
.icon-music::after { border-radius: 2px; inset: 10px 14px; }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p { color: var(--grey-light); font-size: 0.95rem; }

/* Split grid */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.split-content p {
    color: var(--grey-light);
    margin-bottom: 1rem;
}

.split-content .btn { margin-top: 1rem; }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 0.25rem;
}

.stat-card span { color: var(--grey-light); font-size: 0.9rem; }

/* Programs */
.programs-grid,
.programs-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.program-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
}

.program-card:hover {
    border-color: rgba(200, 16, 46, 0.35);
    transform: translateY(-2px);
}

.program-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.program-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(200, 16, 46, 0.15);
    color: var(--red);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.program-host {
    color: var(--grey-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.program-time {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--grey);
}

.program-card.full p:last-child {
    color: var(--grey-light);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

/* About */
.about-image-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.about-image-card .brand-logo {
    max-height: 110px;
    max-width: 160px;
    width: auto;
    margin: 0 auto 2rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--grey-light);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--black-card), var(--black-elevated));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.highlight-card p { color: var(--grey-light); font-size: 0.95rem; }

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.language-tags span {
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--grey-light);
}

.language-tags.large { justify-content: center; }
.language-tags.large span { padding: 0.6rem 1.25rem; font-size: 0.95rem; }

/* Sponsors */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sponsor-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.sponsor-card:hover {
    border-color: rgba(200, 16, 46, 0.3);
    transform: translateY(-4px);
}

.sponsor-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sponsor-category {
    display: block;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.sponsor-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.sponsor-card p { color: var(--grey-light); font-size: 0.9rem; }

.sponsor-benefits {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.sponsor-benefits h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--red);
}

.contact-card p,
.contact-card a {
    display: block;
    color: var(--grey-light);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.contact-form-wrap {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--grey-light);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

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

.form-error {
    display: block;
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.12), rgba(200, 16, 46, 0.04));
    border-block: 1px solid var(--border);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-inner p { color: var(--grey-light); }

.about-preview { background: var(--black-soft); }
.programs-preview { background: var(--black-soft); }

/* Footer */
.site-footer {
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand p { color: var(--grey-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-desc { font-size: 0.85rem !important; }

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--grey-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact p,
.footer-contact a {
    display: block;
    color: var(--grey-light);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--grey-light);
}

.social-links a:hover {
    border-color: var(--red);
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    color: var(--grey);
    font-size: 0.85rem;
}

/* Player bar */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--player-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}

.player-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--player-height);
    gap: 1.5rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.player-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--grey-light);
}

.player-meta strong {
    display: block;
    font-size: 0.95rem;
}

.player-meta span {
    font-size: 0.8rem;
    color: var(--grey);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.player-btn:hover {
    background: var(--red-hover);
    transform: scale(1.05);
}

.player-btn svg { width: 20px; height: 20px; }

.volume-control input[type="range"] {
    width: 100px;
    accent-color: var(--red);
}

.player-bar.playing .pulse-dot { background: #22c55e; }

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .brand-logo--header {
        width: 80px;
        max-width: 80px;
        margin: -6px 0;
    }

    .brand-logo--footer {
        width: 168px;
        max-width: 168px;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 0.75rem 1rem;
        gap: 0.15rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .site-nav a {
        width: 100%;
        padding: 0.55rem 0.85rem;
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-listen { display: none; }

    .hero-content,
    .split-grid,
    .contact-grid,
    .cta-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .hero-text p { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-cities { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-card { padding: 2rem; }
    .stream-buttons { grid-template-columns: 1fr; }
    .broadcast-banner-caption { padding: 1.25rem; }

    .features-grid,
    .programs-grid,
    .programs-full-grid,
    .highlights-grid,
    .sponsors-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .player-inner { flex-wrap: wrap; justify-content: center; padding-block: 0.5rem; height: auto; min-height: var(--player-height); }
    body { padding-bottom: 90px; }
}

.pro-card {
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, 0.35);
    box-shadow: 0 28px 80px rgba(200, 16, 46, 0.12);
}

.content-block {
    max-width: 820px;
    color: var(--grey-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-block p { margin-bottom: 1rem; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
