:root {
    --bg: #050816;
    --bg-soft: #0d1328;
    --surface: rgba(15, 24, 52, 0.92);
    --surface-strong: #131f44;
    --text: #f5f7ff;
    --muted: #9dadcf;
    --primary: #ff6b2c;
    --secondary: #26e0ff;
    --accent: #ffd449;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(38, 224, 255, 0.2), transparent 28%),
        radial-gradient(circle at right top, rgba(255, 107, 44, 0.22), transparent 22%),
        linear-gradient(180deg, #02040c 0%, #071129 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(2, 4, 12, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand img {
    width: 70px;
}

.brand strong,
.hero-copy h1,
.section-heading h2,
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
}

.brand span,
.hero-copy p,
.section-heading p,
.card p,
.page-copy,
.footer-grid p,
.footer-grid a,
.table-card td,
.table-card th,
.news-content,
.show-details p,
.schedule-item p,
.contact-card p {
    color: var(--muted);
}

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

.site-nav a {
    padding: 0.35rem 0;
    position: relative;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
}

.listen-button,
.button,
.button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listen-button,
.button {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #110c07;
    box-shadow: 0 18px 45px rgba(255, 107, 44, 0.32);
}

.button-outline {
    border: 1px solid rgba(38, 224, 255, 0.4);
    color: var(--text);
}

.listen-button:hover,
.button:hover,
.button-outline:hover {
    transform: translateY(-2px);
}

.hero {
    padding: 2.5rem 0 1rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
}

.hero-copy,
.hero-stack,
.section-card,
.card,
.page-panel,
.news-card,
.show-card,
.schedule-item,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: '';
    position: absolute;
    inset: auto -15% -25% auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(38, 224, 255, 0.28), transparent 70%);
}

.eyebrow,
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.eyebrow {
    background: rgba(38, 224, 255, 0.12);
    color: var(--secondary);
}

.live-badge {
    background: rgba(255, 107, 44, 0.12);
    color: #ffd7c4;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4b2b;
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
    animation: pulse 1.8s infinite;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    margin: 1rem 0 0.8rem;
    line-height: 1.02;
}

.hero-actions,
.hero-stats,
.page-cta,
.contact-grid,
.two-col,
.cards-grid,
.schedule-grid,
.news-grid,
.shows-grid,
.quick-grid,
.player-meta {
    display: grid;
    gap: 1rem;
}

.hero-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: center;
    margin: 1.4rem 0;
}

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

.stat {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat strong,
.mini-metric strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hero-stack {
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
}

.hero-slider {
    display: grid;
    gap: 0.9rem;
}

.hero-slider-window {
    position: relative;
    min-height: 100%;
}

.player-card {
    padding: 1.4rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(19, 31, 68, 0.9), rgba(8, 13, 30, 0.96));
}

.player-card audio {
    width: 100%;
    margin-top: 1rem;
}

.player-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.mini-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem;
    border-radius: 16px;
}

.section {
    padding: 1.4rem 0 2.4rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

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

.card,
.news-card,
.show-card,
.page-panel,
.contact-card {
    padding: 1.35rem;
}

.card h3,
.news-card h3,
.show-card h3,
.schedule-item h3,
.contact-card h3,
.page-panel h2 {
    margin: 0.4rem 0 0.8rem;
}

.show-card img,
.news-card img,
.slide-visual img,
.hero-promo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.hero-slider-arrow,
.hero-slider-dot {
    border: 0;
    cursor: pointer;
}

.hero-slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.hero-slider-dot.is-active {
    background: var(--secondary);
    box-shadow: 0 0 0 5px rgba(38, 224, 255, 0.14);
}

.cards-grid .card {
    min-height: 100%;
}

.tag {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--secondary);
    font-size: 0.82rem;
}

.schedule-grid,
.news-grid,
.shows-grid,
.contact-grid,
.two-col,
.quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.schedule-item {
    padding: 1.35rem;
}

.schedule-copy {
    color: var(--muted);
    line-height: 1.7;
}

.schedule-copy p {
    margin: 0.65rem 0 0;
}

.schedule-copy ul,
.schedule-copy ol {
    margin: 0.65rem 0 0;
    padding-left: 1.2rem;
}

.time-range {
    color: var(--accent);
    font-weight: 700;
}

.page-hero {
    padding: 2rem 0 1rem;
}

.page-hero .page-panel {
    padding: 2rem;
}

.show-hero-frame {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 1.75rem;
    padding: 0.9rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(38, 224, 255, 0.18), rgba(255, 107, 44, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.show-hero-image {
    width: min(100%, 560px);
    max-height: 420px;
    object-fit: cover;
    border-radius: 22px;
    margin: 0;
}

.page-copy,
.news-content,
.show-details {
    line-height: 1.75;
}

.news-meta,
.show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--muted);
}

.contact-form,
.cta-banner {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.contact-form form,
.admin-form,
.inline-form {
    display: grid;
    gap: 1rem;
}

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

label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem 0 1.2rem;
}

.footer-grid a {
    display: block;
    margin-top: 0.6rem;
}

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

.flash-public {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.flash-public.success {
    background: rgba(53, 208, 127, 0.14);
    color: #b8ffd8;
}

.flash-public.error {
    background: rgba(255, 97, 97, 0.14);
    color: #ffd5d5;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 75, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .cards-grid,
    .schedule-grid,
    .news-grid,
    .shows-grid,
    .contact-grid,
    .two-col,
    .quick-grid,
    .footer-grid,
    .hero-stats,
    .field-grid,
    .player-meta {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.6rem);
        padding: 1rem;
        border-radius: 20px;
        background: rgba(5, 8, 22, 0.98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: grid;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .listen-button {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-copy,
    .hero-stack,
    .page-panel,
    .news-card,
    .show-card,
    .schedule-item,
    .contact-card,
    .card {
        border-radius: 22px;
    }

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

    .footer-bottom,
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
