:root {
    --bg-deep: #140327;
    --bg-mid: #2b0d4d;
    --panel: rgba(32, 8, 56, 0.84);
    --neon-pink: #f44fff;
    --neon-gold: #ffd84d;
    --neon-orange: #ff9f36;
    --text-main: #fff6ff;
    --text-soft: #f0d6ff;
}

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

body {
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 105, 252, 0.25), transparent 35%),
        radial-gradient(circle at 90% 15%, rgba(255, 166, 46, 0.18), transparent 32%),
        linear-gradient(160deg, rgba(19, 1, 39, 0.85), rgba(16, 2, 35, 0.92)),
        url("img-vid/background.webp") center/cover no-repeat fixed;
    padding: 1.25rem;
}

.ambient-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 110%, rgba(255, 66, 193, 0.15), transparent 45%),
        radial-gradient(circle at 48% -10%, rgba(255, 220, 99, 0.12), transparent 35%);
    animation: glowShift 8s ease-in-out infinite;
}

.site-shell {
    position: relative;
    z-index: 1;
    width: min(1400px, 100%);
    margin: 0 auto;
    background: var(--panel);
    border: 1px solid rgba(244, 79, 255, 0.4);
    border-radius: 18px;
    box-shadow:
        0 0 0 1px rgba(255, 167, 50, 0.2) inset,
        0 0 26px rgba(244, 79, 255, 0.38),
        0 0 60px rgba(255, 159, 54, 0.16);
    overflow: hidden;
}

.hero {
    position: relative;
    text-align: center;
    padding: 1.7rem 1.5rem 1.6rem;
    border-bottom: 1px solid rgba(244, 79, 255, 0.28);
    background:
        linear-gradient(180deg, rgba(32, 3, 53, 0.5), rgba(32, 3, 53, 0.05)),
        radial-gradient(circle at 50% -40%, rgba(244, 79, 255, 0.3), transparent 70%);
}

.language-switcher {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem 0;
    color: var(--text-soft);
    font-size: 0.85rem;
}

.language-switcher + .hero {
    padding-top: calc(1.7rem + 44px + 0.5rem);
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 700;
}

.language-switcher a[aria-current="page"] {
    color: var(--neon-gold);
    background: rgba(255, 216, 77, 0.08);
}

.language-switcher a:hover {
    background: rgba(244, 79, 255, 0.15);
    color: #fff;
}

.language-switcher a:focus-visible {
    outline: 2px solid var(--neon-gold);
    outline-offset: 2px;
}

.schedule-timezone {
    margin: -0.25rem 0 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.tiktok-badge,
.facebook-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 216, 77, 0.6);
    color: #fff;
    text-decoration: none;
    background: rgba(19, 2, 35, 0.72);
    box-shadow: 0 0 12px rgba(244, 79, 255, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tiktok-badge svg,
.facebook-badge svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: #fff;
}

.tiktok-badge span,
.facebook-badge span {
    font-family: "Orbitron", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: var(--neon-gold);
}

.tiktok-badge:hover,
.facebook-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255, 159, 54, 0.45);
}

.hero-banner {
    width: min(860px, 100%);
    margin: 0 auto 1.1rem;
    padding: 0.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 216, 77, 0.55);
    background: rgba(19, 2, 35, 0.5);
    box-shadow:
        0 0 0 1px rgba(244, 79, 255, 0.25) inset,
        0 0 26px rgba(244, 79, 255, 0.45),
        0 0 48px rgba(255, 159, 54, 0.18);
    overflow: hidden;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero h1 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.25rem, 2.9vw, 2.1rem);
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.hero h1 span {
    color: var(--neon-gold);
}

.hero p {
    color: var(--text-soft);
    font-size: clamp(0.92rem, 2.1vw, 1.15rem);
}

.player-box {
    margin: 1.25rem;
    padding: 1rem;
    border-radius: 16px;
    border: 2px solid rgba(244, 79, 255, 0.7);
    box-shadow:
        0 0 24px rgba(244, 79, 255, 0.42),
        0 0 30px rgba(255, 159, 54, 0.2) inset;
    background: linear-gradient(130deg, rgba(69, 15, 104, 0.52), rgba(30, 7, 58, 0.8));
}

.live-line {
    text-align: center;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #ffeefe;
}

.live-line strong {
    color: var(--neon-gold);
    white-space: nowrap;
}

.live-dot {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.45rem;
    border-radius: 50%;
    background: #ff3b6b;
    box-shadow: 0 0 8px #ff3b6b, 0 0 14px rgba(255, 59, 107, 0.6);
    animation: livePulse 1.6s ease-in-out infinite;
    vertical-align: middle;
}

/* ---------- Custom radio player ---------- */
.radio-player {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.player-main {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 3vw, 1.3rem);
}

.player-cover {
    position: relative;
    flex-shrink: 0;
    width: clamp(86px, 22vw, 112px);
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    border: 2px solid rgba(255, 216, 77, 0.55);
    background: rgba(19, 2, 35, 0.6);
    box-shadow:
        0 0 18px rgba(244, 79, 255, 0.4),
        0 0 24px rgba(255, 159, 54, 0.2) inset;
}

.player-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.play-btn {
    position: relative;
    flex-shrink: 0;
    width: clamp(64px, 16vw, 80px);
    height: clamp(64px, 16vw, 80px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #2b0d09;
    background:
        radial-gradient(circle at 35% 28%, #fff2b0, #ffd84d 42%, #ff9f36 100%);
    box-shadow:
        0 0 0 4px rgba(255, 216, 77, 0.18),
        0 0 22px rgba(255, 216, 77, 0.6),
        0 0 40px rgba(255, 159, 54, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.18s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.play-btn:hover {
    transform: scale(1.06);
    box-shadow:
        0 0 0 4px rgba(255, 216, 77, 0.28),
        0 0 28px rgba(255, 216, 77, 0.8),
        0 0 52px rgba(255, 159, 54, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.4);
}

.play-btn:active {
    transform: scale(0.96);
}

.play-btn:focus-visible {
    outline: 3px solid var(--neon-pink);
    outline-offset: 3px;
}

.play-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44%;
    height: 44%;
    transform: translate(-50%, -50%);
    fill: currentColor;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.play-btn .icon-pause,
.play-btn .play-loader {
    display: none;
}

/* Loader ring */
.play-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46%;
    height: 46%;
    margin: 0;
    border: 3px solid rgba(43, 13, 9, 0.25);
    border-top-color: #2b0d09;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite;
}

.is-loading .play-btn .icon-play,
.is-loading .play-btn .icon-pause {
    display: none;
}

.is-loading .play-btn .play-loader {
    display: block;
}

.is-playing .play-btn .icon-play {
    display: none;
}

.is-playing .play-btn .icon-pause {
    display: block;
}

.is-playing .play-btn {
    animation: playGlow 2.2s ease-in-out infinite;
}

.player-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    text-align: left;
}

.player-status-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-status {
    font-family: "Orbitron", sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-gold);
}

.is-playing .player-status {
    color: #ff5b86;
    text-shadow: 0 0 10px rgba(255, 91, 134, 0.55);
}

.player-track {
    font-weight: 700;
    font-size: clamp(0.98rem, 2.6vw, 1.18rem);
    color: #fff;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Equalizer bars (only while playing) */
.eq {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 0.7rem;
}

.is-playing .eq {
    display: inline-flex;
}

.eq i {
    width: 3px;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--neon-gold), var(--neon-pink));
    transform-origin: bottom;
    animation: eqBounce 0.9s ease-in-out infinite;
}

.eq i:nth-child(2) { animation-delay: 0.2s; }
.eq i:nth-child(3) { animation-delay: 0.4s; }
.eq i:nth-child(4) { animation-delay: 0.15s; }

/* Volume row */
.player-volume {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-top: 0.2rem;
}

.vol-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    padding: 0;
    border: 1px solid rgba(255, 216, 77, 0.5);
    border-radius: 50%;
    background: rgba(19, 2, 35, 0.7);
    color: var(--neon-gold);
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.vol-btn:hover {
    box-shadow: 0 0 14px rgba(255, 159, 54, 0.5);
}

.vol-btn:focus-visible {
    outline: 2px solid var(--neon-pink);
    outline-offset: 2px;
}

.vol-btn svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.vol-btn .icon-mute {
    display: none;
}

.is-muted .vol-btn .icon-vol {
    display: none;
}

.is-muted .vol-btn .icon-mute {
    display: block;
}

.is-muted .vol-btn {
    color: #ff5b86;
    border-color: rgba(255, 91, 134, 0.6);
}

.vol-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--neon-gold) 0%,
        var(--neon-gold) var(--vol, 80%),
        rgba(255, 255, 255, 0.16) var(--vol, 80%),
        rgba(255, 255, 255, 0.16) 100%
    );
    cursor: pointer;
    outline: none;
}

.vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--neon-gold);
    box-shadow: 0 0 8px rgba(255, 216, 77, 0.7);
    cursor: pointer;
}

.vol-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--neon-gold);
    box-shadow: 0 0 8px rgba(255, 216, 77, 0.7);
    cursor: pointer;
}

.vol-slider:focus-visible {
    box-shadow: 0 0 0 3px rgba(244, 79, 255, 0.5);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.82); }
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

@keyframes playGlow {
    0%, 100% {
        box-shadow:
            0 0 0 4px rgba(255, 216, 77, 0.22),
            0 0 24px rgba(255, 216, 77, 0.65),
            0 0 44px rgba(255, 159, 54, 0.4),
            0 8px 20px rgba(0, 0, 0, 0.35);
    }
    50% {
        box-shadow:
            0 0 0 7px rgba(255, 216, 77, 0.16),
            0 0 34px rgba(255, 216, 77, 0.85),
            0 0 64px rgba(255, 159, 54, 0.55),
            0 8px 20px rgba(0, 0, 0, 0.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-dot,
    .is-playing .play-btn,
    .eq i {
        animation: none;
    }
}

.app-links {
    margin: 1.25rem;
    margin-top: 0;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(244, 79, 255, 0.6);
    background:
        linear-gradient(140deg, rgba(40, 10, 64, 0.78), rgba(19, 4, 38, 0.86)),
        radial-gradient(circle at 12% 50%, rgba(255, 216, 77, 0.14), transparent 45%);
    box-shadow:
        0 0 20px rgba(244, 79, 255, 0.25),
        0 0 28px rgba(255, 159, 54, 0.12) inset;
}

.app-links h2 {
    font-family: "Orbitron", sans-serif;
    color: var(--neon-gold);
    font-size: clamp(1rem, 2.3vw, 1.35rem);
    margin-bottom: 0.55rem;
    letter-spacing: 0.03em;
}

.app-links p {
    color: var(--text-soft);
    line-height: 1.55;
    font-size: clamp(0.9rem, 1.9vw, 1.02rem);
}

.store-badges {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.store-badges a {
    display: inline-flex;
    padding: 0.4rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 216, 77, 0.42);
    background: rgba(17, 4, 34, 0.55);
    box-shadow: 0 0 12px rgba(255, 159, 54, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-badges a:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 216, 77, 0.75);
    box-shadow:
        0 0 16px rgba(244, 79, 255, 0.3),
        0 0 24px rgba(255, 159, 54, 0.26);
}

.store-logo {
    display: block;
    height: 54px;
    width: auto;
}

.schedule,
.poll {
    margin: 1.25rem;
    margin-top: 0;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(244, 79, 255, 0.72);
    background:
        linear-gradient(140deg, rgba(47, 11, 76, 0.82), rgba(17, 3, 35, 0.92)),
        radial-gradient(circle at 50% 0%, rgba(244, 79, 255, 0.2), transparent 62%);
    box-shadow:
        0 0 22px rgba(244, 79, 255, 0.28),
        0 0 30px rgba(255, 159, 54, 0.1) inset;
}

.schedule > h2,
.poll > h2 {
    margin-bottom: 0.9rem;
    color: var(--neon-gold);
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1rem, 2.4vw, 1.45rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.schedule-card {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(244, 79, 255, 0.55);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(58, 13, 91, 0.78), rgba(23, 4, 43, 0.88)),
        radial-gradient(circle at 100% 0%, rgba(255, 216, 77, 0.12), transparent 48%);
    box-shadow:
        0 0 14px rgba(244, 79, 255, 0.2),
        0 0 18px rgba(244, 79, 255, 0.1) inset;
}

.schedule-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.48rem;
    color: var(--neon-gold);
    font-family: "Orbitron", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.schedule-meta time {
    color: var(--text-soft);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.schedule-card h3 {
    margin-bottom: 0.42rem;
    color: #fff;
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    font-size: clamp(0.95rem, 2.1vw, 1.2rem);
    line-height: 1.25;
    letter-spacing: 0.035em;
    text-shadow: 0 0 12px rgba(244, 79, 255, 0.5);
}

.schedule-card p {
    color: rgba(240, 214, 255, 0.82);
    font-size: clamp(0.78rem, 1.6vw, 0.9rem);
    line-height: 1.48;
}

.poll-embed {
    position: relative;
    width: 100%;
    max-width: 880px;
    height: 325px;
    min-height: 0;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 216, 77, 0.35);
    border-radius: 12px;
    background: rgba(19, 2, 35, 0.35);
    box-shadow:
        0 0 16px rgba(244, 79, 255, 0.2),
        0 0 20px rgba(255, 159, 54, 0.08) inset;
}

.poll-embed iframe {
    position: absolute;
    top: -130px;
    left: 50%;
    display: block;
    width: 100%;
    height: 700px;
    border: 0;
    transform: translateX(-50%) scale(1.12);
    transform-origin: center top;
}

.cookie-banner {
    position: fixed;
    z-index: 100;
    inset: auto 1rem 1rem;
    width: min(760px, calc(100% - 2rem));
    margin-inline: auto;
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    padding: 1.25rem;
    border: 1px solid var(--neon-pink);
    border-radius: 14px;
    background: #200838;
    box-shadow: 0 8px 40px #0009;
    color: var(--text-main);
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.1rem; }
.cookie-banner p { margin-top: 0.65rem; }
.cookie-banner a { color: var(--neon-gold); }
.cookie-status { font-weight: 700; }

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cookie-actions button {
    flex: 1 1 230px;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--neon-pink);
    border-radius: 8px;
    background: #381451;
    color: var(--text-main);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-settings {
    display: block;
    margin: 0.75rem auto 0;
    padding: 0.65rem;
    border: 0;
    background: transparent;
    color: var(--neon-gold);
    font: inherit;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-actions button:hover { background: #502064; }
.cookie-actions button:focus-visible,
.cookie-settings:focus-visible,
.cookie-banner a:focus-visible {
    outline: 2px solid var(--neon-gold);
    outline-offset: 3px;
}

.poll-embed.is-local-preview {
    height: auto;
    min-height: 0;
}

.pollunit-credit {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-height: 42px;
    color: rgba(255, 255, 255, 0.72);
    background: #080c17;
    font-size: 0.8rem;
    text-decoration: none;
}

.pollunit-credit strong {
    color: #fff;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
}

.pollunit-credit:hover,
.pollunit-credit:focus-visible {
    color: #fff;
}

.poll-embed.is-local-preview .pollunit-credit {
    display: none;
}

.poll-preview-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.4rem 1rem;
    color: var(--text-soft);
    text-align: center;
    line-height: 1.5;
}

.poll-preview-message a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.62rem 1rem;
    border: 1px solid rgba(255, 216, 77, 0.65);
    border-radius: 999px;
    color: var(--neon-gold);
    font-family: "Orbitron", sans-serif;
    font-size: 0.78rem;
    text-decoration: none;
    background: rgba(19, 2, 35, 0.72);
    box-shadow: 0 0 14px rgba(244, 79, 255, 0.3);
    transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.poll-preview-message a:hover,
.poll-preview-message a:focus-visible {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(244, 79, 255, 0.5);
}

.poll-preview-message a:focus-visible {
    outline: 2px solid var(--neon-gold);
    outline-offset: 3px;
}

.poll-embed noscript {
    display: block;
    padding: 1rem;
    text-align: center;
}

.poll-embed noscript a {
    color: var(--neon-gold);
}

.support {
    margin: 1.25rem;
    margin-top: 0;
    padding: 1.4rem 1.2rem;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(189, 95, 255, 0.72);
    background:
        linear-gradient(140deg, rgba(47, 11, 76, 0.88), rgba(17, 3, 35, 0.92)),
        radial-gradient(circle at 50% 0%, rgba(189, 95, 255, 0.24), transparent 60%);
    box-shadow:
        0 0 22px rgba(189, 95, 255, 0.3),
        0 0 30px rgba(244, 79, 255, 0.14) inset;
}

.support h2 {
    margin-bottom: 0.7rem;
    color: var(--neon-gold);
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1rem, 2.4vw, 1.45rem);
    letter-spacing: 0.03em;
}

.support p {
    max-width: 780px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    line-height: 1.62;
}

.support-widget {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.15rem;
}

.support-widget > a,
.support-widget .bmc-btn-container,
.support-widget .bmc-btn {
    max-width: 100%;
}

.support-widget .bmc-btn {
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 0 18px rgba(189, 95, 255, 0.55),
        0 8px 20px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-widget .bmc-btn:hover,
.support-widget .bmc-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow:
        0 0 28px rgba(189, 95, 255, 0.78),
        0 10px 24px rgba(0, 0, 0, 0.34);
}

.support-widget .bmc-btn:focus-visible {
    outline: 3px solid var(--neon-gold);
    outline-offset: 3px;
}

.support-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.75rem 1.35rem;
    border: 2px solid #000;
    border-radius: 10px;
    background: #bd5fff;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(189, 95, 255, 0.5);
}

.support-fallback:hover {
    color: #fff;
    box-shadow: 0 0 26px rgba(189, 95, 255, 0.72);
    transform: translateY(-1px);
}

.about {
    margin: 1.25rem;
    margin-top: 0;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 159, 54, 0.52);
    background: linear-gradient(180deg, rgba(48, 9, 76, 0.55), rgba(28, 4, 48, 0.8));
}

.about h2 {
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    color: var(--neon-gold);
    margin-bottom: 0.85rem;
    font-size: clamp(1rem, 2.4vw, 1.45rem);
    letter-spacing: 0.05em;
}

.about p {
    color: var(--text-soft);
    line-height: 1.62;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
}

.about p + p {
    margin-top: 1rem;
}

.site-footer {
    padding: 1.35rem 1.25rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(244, 79, 255, 0.28);
    background: rgba(18, 3, 34, 0.36);
}

.footer-brand {
    margin-bottom: 0.85rem;
}

.footer-copy {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(0.86rem, 2vw, 1rem);
    color: #fff;
    letter-spacing: 0.04em;
}

.footer-tagline {
    margin-top: 0.28rem;
    color: var(--neon-gold);
    font-size: 0.86rem;
    font-weight: 700;
}

.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
    margin-bottom: 0.9rem;
}

/* The impresszum links grow to fill the middle, pushing the TikTok badge
   to the far left and the Facebook badge to the far right. */
.footer-social-row .footer-links {
    flex: 1 1 260px;
    margin-bottom: 0;
}

.footer-social-row .tiktok-badge:hover,
.footer-social-row .facebook-badge:hover {
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.36rem 0.55rem;
    margin-bottom: 0.9rem;
    color: rgba(255, 216, 77, 0.72);
}

.site-footer a,
.footer-links span {
    font-size: 0.74rem;
    color: rgba(255, 246, 255, 0.72);
    text-decoration: none;
}

.footer-links a {
    color: var(--neon-gold);
}

.footer-links a[aria-current="page"] {
    color: #fff;
}

.site-footer a:hover {
    color: var(--neon-gold);
    text-decoration: underline;
}

.online-stream-badge {
    display: inline-flex;
    margin-bottom: 0.75rem;
}

.online-stream-badge img {
    display: block;
    width: 80px;
    height: 15px;
    border: 0;
}

.developer-link {
    display: block;
    width: max-content;
    margin: 0 auto;
}

.legal-hero {
    padding: 1.8rem 1.4rem 1.35rem;
}

.back-home-wrap {
    margin: 0 1.25rem 1.25rem;
    text-align: center;
}

.back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(255, 216, 77, 0.6);
    border-radius: 999px;
    background: rgba(19, 2, 35, 0.72);
    box-shadow: 0 0 12px rgba(244, 79, 255, 0.32);
    color: var(--neon-gold);
    font-family: "Orbitron", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.back-home:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255, 159, 54, 0.45);
}

.legal-logo {
    display: block;
    width: min(120px, 36vw);
    margin: 0 auto 0.85rem;
    border-radius: 14px;
    filter: drop-shadow(0 0 16px rgba(244, 79, 255, 0.72));
}

.legal-content {
    margin: 1.25rem;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 159, 54, 0.52);
    background: linear-gradient(180deg, rgba(48, 9, 76, 0.55), rgba(28, 4, 48, 0.8));
}

.legal-content ul {
    padding-left: 1.15rem;
}

.legal-content li,
.legal-content p {
    color: var(--text-soft);
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    line-height: 1.62;
}

.legal-content li + li,
.legal-content p + p {
    margin-top: 0.5rem;
}

.legal-content strong {
    color: #fff;
}

.legal-content a {
    color: var(--neon-gold);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@keyframes glowShift {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@media (max-width: 820px) {
    .language-switcher + .hero {
        padding-top: calc(1.2rem + 44px + 0.5rem);
    }
}

@media (max-width: 700px) {
    body {
        padding: 0.6rem;
    }

    /* Stack the badges above the impresszum links on phones so nothing
       gets cramped on a narrow line. */
    .footer-social-row .footer-links {
        flex-basis: 100%;
        order: 3;
    }

    .tiktok-badge,
    .facebook-badge {
        padding: 0.42rem 0.72rem;
    }

    .tiktok-badge span,
    .facebook-badge span {
        font-size: 0.72rem;
    }

    .tiktok-badge svg,
    .facebook-badge svg {
        width: 1.15rem;
        height: 1.15rem;
    }

    .player-box,
    .app-links,
    .schedule,
    .poll,
    .support,
    .about,
    .legal-content {
        margin: 0.8rem;
    }

    .schedule,
    .poll {
        padding: 1rem 0.85rem;
    }

    .poll-embed {
        height: 325px;
    }

    .poll-embed iframe {
        top: -105px;
        transform: translateX(-50%) scale(1.06);
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .schedule-card {
        padding: 0.9rem;
    }

    .support {
        padding: 1.15rem 0.9rem;
    }

    .support-widget > a,
    .support-widget .bmc-btn-container,
    .support-widget .bmc-btn {
        width: min(100%, 320px);
    }

    .support-widget .bmc-btn {
        min-width: 0;
        height: 56px;
        padding: 0 14px;
        font-size: clamp(0.9rem, 5vw, 1.1rem);
    }

    .support-widget .bmc-btn-text {
        width: auto;
        flex-shrink: 1;
        line-height: 1.15;
        white-space: normal;
    }

    /* On phones the title drops to its own full-width line under the
       cover + play button, all centred so the card stays balanced. */
    .player-main {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 1.1rem;
    }

    .player-info {
        flex-basis: 100%;
        align-items: center;
        text-align: center;
    }

    .player-status-row {
        justify-content: center;
    }

    .store-logo {
        height: 48px;
    }

    .site-footer {
        padding: 1.1rem 0.8rem 0.9rem;
    }

    .back-home-wrap {
        margin: 0 0.8rem 0.9rem;
    }
}

@media (max-width: 350px) {
    .poll-embed {
        height: 355px;
    }
}
