:root {
    --bg-main: #07111d;
    --bg-surface: rgba(10, 18, 31, 0.82);
    --bg-elevated: rgba(14, 25, 42, 0.92);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(0, 229, 255, 0.25);
    --text-main: #f8fbff;
    --text-muted: #9db0c7;
    --primary: #00e5ff;
    --primary-deep: #00a7d1;
    --secondary: #ff7b52;
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.38);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(0, 229, 255, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 123, 82, 0.18), transparent 24%),
        linear-gradient(180deg, #07111d 0%, #081522 35%, #050c15 100%);
    overflow-x: hidden;
}

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

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

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

.bg-orb,
.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.bg-orb {
    filter: blur(90px);
    opacity: 0.65;
}

.bg-orb--one {
    inset: auto auto 68% -10%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 229, 255, 0.18);
}

.bg-orb--two {
    inset: 8% -10% auto auto;
    width: 28rem;
    height: 28rem;
    background: rgba(255, 123, 82, 0.16);
}

.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
}

.radio-landing {
    position: relative;
    z-index: 1;
    padding: 2rem 0 4rem;
}

.hero-section,
.players-section,
.info-section,
.footer-cta {
    padding: 1.2rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 1.6rem;
    align-items: center;
}

.hero-copy,
.hero-panel,
.player-card,
.info-card,
.footer-cta__inner {
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(13, 24, 40, 0.9), rgba(8, 15, 25, 0.86));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.hero-copy,
.hero-panel,
.footer-cta__inner {
    border-radius: var(--radius-xl);
}

.hero-copy {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.brand-link {
    display: inline-flex;
    margin-bottom: 1.2rem;
}

.brand-link img {
    width: clamp(150px, 20vw, 220px);
}

.hero-eyebrow,
.section-kicker,
.player-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.footer-cta__inner h2 {
    margin: 1rem 0 0.85rem;
    font-family: 'Chakra Petch', sans-serif;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.hero-copy p,
.section-heading p,
.hero-panel__stats span,
.player-card__header p,
.info-card p,
.footer-cta__inner p {
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-actions,
.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta:hover {
    transform: translateY(-2px);
}

.cta--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #07111d;
    box-shadow: 0 18px 34px -18px rgba(0, 229, 255, 0.7);
}

.cta--ghost {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.hero-points {
    margin: 1.3rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d8e4f1;
}

.hero-points i,
.info-card__icon i {
    color: var(--primary);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 1.5rem;
    text-align: center;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: auto -20% -25% auto;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent 70%);
}

.hero-panel__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 123, 82, 0.12);
    color: #ffb79f;
    border: 1px solid rgba(255, 123, 82, 0.22);
    font-weight: 700;
}

.hero-panel__mascot {
    position: relative;
    z-index: 1;
    margin: 1rem auto 0;
    width: min(360px, 100%);
}

.hero-panel__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.hero-panel__stats article {
    padding: 1rem 0.8rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel__stats strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-main);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.section-heading h2,
.footer-cta__inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.player-stack,
.info-grid {
    display: grid;
    gap: 1.2rem;
}

.player-card,
.info-card {
    border-radius: var(--radius-lg);
    padding: 1.4rem;
}

.player-card__header {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.player-card__header h3,
.info-card h3 {
    margin: 0.4rem 0 0;
    font-size: 1.45rem;
}

.player-frame {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(6, 12, 21, 0.98), rgba(10, 18, 31, 0.92));
    padding: 1rem;
}

.player-frame--small {
    min-height: 102px;
}

.player-frame--big {
    min-height: 622px;
}

.player,
.playerbig,
.player-embed {
    width: 100%;
}

.player,
.player-embed--small {
    height: 70px;
}

.playerbig,
.player-embed--big {
    height: 600px;
}

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

.info-card__icon {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.16);
    font-size: 1.1rem;
}

.footer-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.4rem, 4vw, 2.2rem);
}

@media (max-width: 980px) {
    .hero-grid,
    .info-grid,
    .footer-cta__inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-panel__stats,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .player-frame--big {
        min-height: 502px;
    }

    .playerbig,
    .player-embed--big {
        height: 480px;
    }
}

@media (max-width: 640px) {
    .radio-landing {
        padding-top: 1rem;
    }

    .container {
        width: min(100% - 1rem, 1160px);
    }

    .hero-copy,
    .hero-panel,
    .player-card,
    .info-card,
    .footer-cta__inner {
        border-radius: 24px;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .player-frame,
    .player-card,
    .hero-copy,
    .hero-panel {
        padding: 1rem;
    }

    .player-frame--big {
        min-height: 402px;
    }

    .playerbig,
    .player-embed--big {
        height: 380px;
    }

    .cta {
        width: 100%;
    }
}