:root {
    --bg: #050505;
    --panel: rgba(17, 17, 17, 0.86);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text: #f7f0e8;
    --muted: #c0b2a4;
    --accent: #d80d12;
    --accent-strong: #ff3b30;
    --track: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(216, 13, 18, 0.16), transparent 30%),
        linear-gradient(135deg, #080808 0%, #111111 55%, #050505 100%);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

.background-glow {
    position: fixed;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.background-glow-left {
    top: -8rem;
    left: -7rem;
    background: rgba(216, 13, 18, 0.6);
}

.background-glow-right {
    right: -10rem;
    bottom: -8rem;
    background: rgba(255, 100, 72, 0.35);
}

.page-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 2rem;
    align-items: stretch;
}

.hero-copy,
.player-card {
    border: 1px solid var(--panel-border);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-copy {
    padding: 3rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(216, 13, 18, 0.18);
    color: #ffd3c8;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Teko", sans-serif;
    font-size: clamp(3.8rem, 9vw, 6.6rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.local-seo-copy {
    max-width: 34rem;
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

.contact-panel {
    margin-top: 2rem;
    padding: 1.4rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(216, 13, 18, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-kicker,
.contact-tagline {
    margin: 0;
}

.contact-kicker {
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-tagline {
    color: #ffd9cf;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-item {
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item h2,
.contact-item p {
    margin: 0;
}

.contact-item h2 {
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffd1c3;
}

.contact-item p {
    min-height: 2.8rem;
    color: var(--text);
    line-height: 1.45;
}

.contact-item a,
.social-strip a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.contact-item a {
    display: inline-block;
    margin-top: 0.8rem;
}

.social-strip {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 99, 82, 0.55);
    background: rgba(216, 13, 18, 0.14);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.social-link span {
    overflow-wrap: anywhere;
}

.social-label {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature-row span {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f0d7c8;
    font-size: 0.92rem;
}

.player-card {
    padding: 1.5rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background:
        radial-gradient(circle at top, rgba(216, 13, 18, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(27, 10, 10, 0.98), rgba(12, 12, 12, 0.98));
    overflow: hidden;
}

.brand-block {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    min-height: 24rem;
    padding: 1.75rem;
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at center, rgba(216, 13, 18, 0.16), transparent 55%),
        linear-gradient(180deg, rgba(48, 17, 17, 0.9), rgba(11, 11, 11, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.brand-block::before {
    content: "";
    position: absolute;
    inset: auto -15% -30% -15%;
    height: 60%;
    background: radial-gradient(circle, rgba(216, 13, 18, 0.32), rgba(216, 13, 18, 0) 68%);
    filter: blur(30px);
    pointer-events: none;
}

.brand-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 35%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 22px,
            rgba(255, 255, 255, 0.02) 22px,
            rgba(255, 255, 255, 0.02) 23px
        );
    pointer-events: none;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(216, 13, 18, 0.18);
    color: #ffe2d4;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.live-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--accent-strong);
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.8);
    animation: pulse 1.8s infinite;
}

.brand-logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    border-radius: 1rem;
    filter: drop-shadow(0 22px 50px rgba(216, 13, 18, 0.34));
    transform: scale(1.08);
}

.visualizer {
    height: 4.5rem;
    margin: 1rem 0 0;
    padding: 0.8rem 1rem 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.6rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.visualizer span {
    flex: 1;
    min-height: 1rem;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #ff8a6b 0%, var(--accent) 90%);
    animation: equalizer 1.4s ease-in-out infinite alternate;
}

.visualizer span:nth-child(2) {
    animation-delay: 0.2s;
}

.visualizer span:nth-child(3) {
    animation-delay: 0.45s;
}

.visualizer span:nth-child(4) {
    animation-delay: 0.15s;
}

.visualizer span:nth-child(5) {
    animation-delay: 0.35s;
}

.controls {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border: 0;
    border-radius: 1.15rem;
    font: inherit;
    font-weight: 800;
    color: #fff7f1;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent) 0%, #8f080c 100%);
    transition: transform 180ms ease, box-shadow 180ms ease;
    box-shadow: 0 18px 36px rgba(216, 13, 18, 0.28);
}

.play-button:hover,
.play-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(216, 13, 18, 0.35);
}

.play-button:focus-visible,
.stream-link:focus-visible,
input[type="range"]:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

.button-icon {
    font-size: 1rem;
}

.player-status {
    margin: 0;
    min-height: 1.5rem;
    color: var(--muted);
}

.volume-control {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

input[type="range"] {
    width: 100%;
    accent-color: var(--accent-strong);
}

#volumeValue {
    color: #ffd9cf;
    font-weight: 700;
}

.actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stream-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.signal-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto 2rem;
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.4rem;
    background: rgba(13, 13, 13, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.footer-brand,
.footer-text {
    margin: 0;
}

.footer-brand {
    font-family: "Teko", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-text {
    margin-top: 0.25rem;
    color: var(--muted);
}

.footer-credit {
    flex: 0 0 auto;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(216, 13, 18, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.footer-credit:hover,
.footer-credit:focus-visible {
    background: rgba(216, 13, 18, 0.2);
}

@keyframes equalizer {
    from {
        height: 24%;
        opacity: 0.75;
    }

    to {
        height: 100%;
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 59, 48, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

@media (max-width: 920px) {
    .page-shell {
        grid-template-columns: 1fr;
        padding: 1.5rem 0 2rem;
    }

    .player-card {
        order: -1;
    }

    .hero-copy,
    .player-card {
        padding: 1.5rem;
    }

    .brand-block {
        min-height: 18rem;
    }

    .footer-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .page-shell,
    .site-footer {
        width: min(100% - 1rem, 1120px);
    }

    .hero-copy {
        padding: 1.25rem;
    }

    .hero-copy h1 {
        font-size: clamp(3.1rem, 18vw, 4.8rem);
    }

    .contact-grid,
    .social-strip,
    .social-links,
    .contact-header,
    .volume-control,
    .actions-row {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: initial;
    }

    .social-links {
        gap: 0.6rem;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    .brand-block {
        min-height: 14rem;
        padding: 1.1rem;
    }

    .brand-logo {
        transform: scale(1);
        max-width: 100%;
    }

    .player-card,
    .controls {
        padding: 1rem;
    }

    .footer-shell {
        padding: 1rem;
    }
}

@media (max-width: 920px) {
    .page-shell {
        grid-template-columns: 1fr;
        padding: 1.25rem 0 2rem;
        align-items: initial;
        gap: 1.25rem;
    }

    .hero-copy,
    .player-card {
        padding: 1.5rem;
    }

    .brand-block {
        min-height: 18rem;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 1rem, 1120px);
        gap: 1rem;
    }

    .hero-copy,
    .player-card,
    .contact-panel,
    .brand-block,
    .controls {
        padding: 1rem;
    }

    .hero-copy h1 {
        font-size: clamp(3.2rem, 19vw, 5rem);
    }

    .feature-row {
        margin-top: 1.25rem;
    }

    .brand-block {
        min-height: 15rem;
        gap: 1rem;
    }

    .brand-logo {
        max-width: 100%;
        transform: scale(1);
    }

    .visualizer {
        height: 3.4rem;
        padding: 0.6rem 0.75rem 0;
        gap: 0.4rem;
    }

    .actions-row,
    .volume-control,
    .contact-grid,
    .social-strip,
    .contact-header {
        grid-template-columns: 1fr;
        display: grid;
        justify-content: initial;
    }

    .social-links {
        flex-direction: column;
        justify-content: initial;
        width: 100%;
    }

    .social-link {
        width: 100%;
        justify-content: flex-start;
    }

    .volume-control {
        gap: 0.6rem;
    }

    .signal-note {
        text-align: left;
    }

    .contact-item p {
        min-height: auto;
    }
}

@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;
    }
}