:root {
    --yellow: #fff200;
    --purple: #2f2482;
    --purple-deep: #17104f;
    --ink: #101010;
    --paper: #f4f2e9;
    --white: #ffffff;
    --muted: #686579;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { width: 1.5rem; fill: currentColor; }
.topbar {
    min-height: 98px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 14px clamp(22px, 5vw, 80px);
    background: var(--yellow);
    border-bottom: 8px solid var(--purple);
}
.brand img { width: min(290px, 40vw); max-height: 70px; object-fit: contain; }
.topbar nav { display: flex; gap: 28px; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.topbar nav a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 7px; }
.live-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: white;
    background: var(--purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.live-link span, .signal {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #ff435b;
    box-shadow: 0 0 0 5px rgba(255, 67, 91, .18);
}

.hero {
    position: relative;
    min-height: 0;
    display: block;
    padding: clamp(58px, 7vw, 112px) clamp(22px, 6vw, 96px);
    overflow: visible;
    background: var(--purple-deep);
    color: white;
}
.hero::after { content: ''; position: absolute; inset: 0; z-index: 0; background: rgba(23, 16, 79, .76); pointer-events: none; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.08); }
.hero-copy, .player-wrap { position: relative; z-index: 1; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 18px; color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.dark { color: var(--purple); }
.hero h1 { margin: 0; max-width: 650px; font-size: clamp(58px, 7vw, 104px); line-height: .84; letter-spacing: -.07em; text-transform: uppercase; }
.hero-copy > p:last-child { max-width: 540px; margin: 30px 0 0; color: #eeeafd; font-size: clamp(16px, 2vw, 21px); line-height: 1.55; }
.player-wrap { width: min(920px, 100%); margin: clamp(42px, 6vw, 72px) auto 0; scroll-margin-top: 20px; }

.player-panel {
    position: relative;
    padding: 36px 38px 28px;
    color: var(--ink);
    background: var(--yellow);
    border: 8px solid var(--purple);
    box-shadow: 18px 18px 0 #0d0930;
}
.player-topline { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.signal { display: inline-block; }
.signal.on { animation: pulse 1.3s infinite; }
.signal.offline { background: #6e6b71; box-shadow: none; }
.frequency { position: absolute; top: 29px; right: 36px; color: var(--purple); font-size: 24px; font-weight: 950; letter-spacing: -.03em; }
.now-playing { padding: 26px 0 19px; border-bottom: 2px solid var(--ink); }
.now-playing > p { margin: 0 0 8px; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.now-playing h2 { margin: 0; max-width: 90%; overflow: hidden; font-size: clamp(29px, 5vw, 54px); line-height: 1; letter-spacing: -.045em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.stream-status { min-height: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 11px; color: var(--purple); font-size: 13px; font-weight: 800; }
.listeners { white-space: nowrap; }
.controls { display: grid; grid-template-columns: 76px 1fr 150px; align-items: center; gap: 24px; padding-top: 24px; }
.play-button { width: 72px; height: 72px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: white; background: var(--purple); cursor: pointer; transition: transform .16s ease, background .16s ease; }
.play-button:hover { transform: scale(1.045); background: var(--purple-deep); }
.play-button:focus-visible, .volume input:focus-visible, a:focus-visible { outline: 4px solid white; outline-offset: 4px; }
.play-icon { width: 0; height: 0; margin-left: 5px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 19px solid white; }
.pause-icon { width: 21px; height: 24px; border-left: 7px solid white; border-right: 7px solid white; }
.loader { width: 26px; height: 26px; border: 3px solid rgba(255, 255, 255, .4); border-top-color: white; border-radius: 50%; animation: spin .8s linear infinite; }
.level { height: 46px; display: flex; align-items: center; gap: 4px; overflow: hidden; opacity: .38; }
.level.active { opacity: 1; }
.level i { display: block; width: 5px; height: 15px; background: var(--purple); animation: none; }
.level i:nth-child(3n) { height: 32px; }
.level i:nth-child(4n) { height: 24px; }
.level i:nth-child(5n) { height: 40px; }
.level.active i { animation: level 1s ease-in-out infinite alternate; animation-delay: var(--delay); }
.volume { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 9px; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.volume input { width: 100%; accent-color: var(--purple); cursor: pointer; }
.player-help { margin: 18px 0 0; color: #5b566d; font-size: 11px; line-height: 1.5; }

.about {
    display: grid;
    grid-template-columns: 90px 1fr minmax(280px, 600px);
    gap: clamp(25px, 5vw, 80px);
    align-items: start;
    padding: 120px clamp(22px, 6vw, 96px);
    background: var(--paper);
}
.section-number { padding-top: 10px; border-top: 5px solid var(--purple); font-size: 16px; font-weight: 950; }
.about h2, .contact h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.about-text { margin: 20px 0 0; font-size: 19px; line-height: 1.7; }

.contact { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1px; color: white; background: #4b43a4; }
.contact > * { min-height: 330px; padding: clamp(32px, 5vw, 70px); background: var(--purple); }
.contact-title { background: var(--purple-deep); }
.contact-card { display: flex; flex-direction: column; justify-content: space-between; transition: background .18s ease, color .18s ease; }
.contact-card:hover:not(.static) { color: var(--ink); background: var(--yellow); }
.contact-card svg { width: 36px; }
.contact-card span { display: flex; flex-direction: column; gap: 10px; }
.contact-card small { color: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.contact-card:hover small { color: var(--purple); }
.contact-card strong { font-size: clamp(22px, 3vw, 37px); line-height: 1.2; }
.contact-card b { align-self: end; font-size: 28px; }

.oxira-promo { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 50px clamp(22px, 6vw, 96px); background: white; border-top: 12px solid var(--yellow); }
.promo-kicker { display: block; margin-bottom: 8px; color: var(--purple); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.oxira-promo strong { display: block; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.04em; text-transform: uppercase; }
.oxira-promo p { margin: 8px 0 0; color: var(--muted); }
.oxira-promo a { min-width: 315px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 22px; border: 2px solid var(--purple); color: white; background: var(--purple); font-size: 12px; font-weight: 900; text-transform: uppercase; transition: background .18s ease; }
.oxira-promo a:hover { background: var(--purple-deep); }
.oxira-promo img { width: 105px; max-height: 38px; object-fit: contain; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 34px clamp(22px, 6vw, 96px); color: white; background: var(--ink); font-size: 12px; }
footer > img { width: 180px; }
footer p { text-align: center; }
.footer-contact { justify-self: end; display: flex; flex-direction: column; align-items: end; gap: 7px; }
.footer-contact a:first-child { color: var(--yellow); }

@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(255, 67, 91, 0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes level { from { transform: scaleY(.35); } to { transform: scaleY(1); } }

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

@media (max-width: 880px) {
    .topbar { grid-template-columns: 1fr auto; }
    .topbar nav { display: none; }
    .hero { padding-bottom: 74px; }
    .player-wrap { width: 100%; }
    .about { grid-template-columns: 55px 1fr; padding-top: 90px; padding-bottom: 90px; }
    .about-text { grid-column: 2; }
    .contact { grid-template-columns: 1fr; }
    .contact > * { min-height: 260px; }
    .oxira-promo { align-items: stretch; flex-direction: column; }
    .oxira-promo a { min-width: 0; }
}

@media (max-width: 570px) {
    .topbar { min-height: 78px; padding: 10px 16px; border-bottom-width: 6px; }
    .brand img { width: 184px; }
    .live-link { padding: 11px; font-size: 0; }
    .live-link span { margin: 0; }
    .hero { padding: 48px 16px 62px; }
    .hero h1 { font-size: clamp(45px, 14vw, 57px); }
    .hero-copy > p:last-child { margin-top: 22px; font-size: 16px; }
    .player-wrap { margin-top: 34px; }
    .player-panel { width: 100%; padding: 26px 20px 22px; border-width: 5px; box-shadow: 7px 7px 0 #0d0930; }
    .frequency { top: 26px; right: 20px; font-size: 19px; }
    .now-playing h2 { max-width: 100%; font-size: clamp(25px, 8vw, 31px); overflow-wrap: anywhere; white-space: normal; }
    .controls { width: 100%; grid-template-columns: 62px minmax(0, 1fr); gap: 14px; }
    .play-button { width: 62px; height: 62px; }
    .level { min-width: 0; }
    .volume { width: 100%; grid-column: 1 / -1; }
    .about { grid-template-columns: 1fr; gap: 22px; padding: 80px 18px; }
    .section-number { width: 55px; }
    .about-text { grid-column: 1; font-size: 17px; }
    .contact > * { padding: 42px 24px; }
    .oxira-promo { padding: 42px 20px; gap: 28px; }
    .oxira-promo a { align-items: flex-start; flex-direction: column; }
    footer { grid-template-columns: 1fr; text-align: left; }
    footer p { text-align: left; }
    .footer-contact { justify-self: start; align-items: start; }
}

@media (max-width: 390px) {
    .topbar { grid-template-columns: 1fr 44px; }
    .brand img { width: 155px; }
    .hero { padding-left: 12px; padding-right: 12px; }
    .player-panel { padding-left: 16px; padding-right: 16px; box-shadow: 5px 5px 0 #0d0930; }
    .frequency { position: static; margin-top: 16px; font-size: 18px; }
    .now-playing { padding-top: 16px; }
    .stream-status { display: block; }
    .listeners { display: block; margin-top: 8px; }
    .controls { grid-template-columns: 58px minmax(0, 1fr); }
    .play-button { width: 56px; height: 56px; }
    .player-help { font-size: 10px; }
}
