/* ============================================
   Radio Ultra — Design System
   ============================================ */

:root {
    --bg: #070707;
    --bg-elevated: #121212;
    --bg-card: #161616;
    --bg-soft: #1c1c1c;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f5f5f5;
    --text-muted: #9a9a9a;
    --red: #ff3300;
    --red-hot: #ff4d1a;
    --red-deep: #b32400;
    --red-glow: rgba(255, 51, 0, 0.35);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --container: 1180px;
    --header-h: 84px;
    --font: "Outfit", system-ui, sans-serif;
    --display: "Bebas Neue", "Outfit", sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    padding-bottom: var(--player-h, 110px);
}

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

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

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

/* ---------- Logo ---------- */

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: block;
    width: auto;
    height: 56px;
    object-fit: contain;
    object-position: left center;
}

.logo--header {
    height: 62px;
    max-width: 230px;
}

.logo--hero {
    height: 120px;
    max-width: 400px;
    margin-bottom: 0.35rem;
}

.logo--footer {
    height: 78px;
    max-width: 260px;
}

.logo--mini {
    height: 48px;
    max-width: 160px;
    margin-bottom: 0.35rem;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 24px var(--red-glow);
}

.btn--primary:hover {
    background: var(--red-hot);
    transform: translateY(-1px);
}

.btn--ghost {
    border: 1px solid var(--border-strong);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn--greet {
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn--greet:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.btn--outline {
    border: 1.5px solid var(--red);
    color: #fff;
}

.btn--outline:hover {
    background: var(--red);
}

.btn--sitead {
    background: #1f8f3a;
    color: #fff;
    border: 1.5px solid #1f8f3a;
    box-shadow: 0 8px 22px rgba(31, 143, 58, 0.35);
}

.btn--sitead:hover {
    background: #177a2f;
    border-color: #177a2f;
    transform: translateY(-1px);
}

.btn--lg {
    padding: 0.95rem 1.55rem;
    font-size: 0.88rem;
}

.btn--sm {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
}

.btn--block {
    width: 100%;
}

.btn--listen {
    padding: 0.7rem 1.1rem;
}

.link-more {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    transition: color 0.2s;
}

.link-more:hover {
    color: var(--red);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: grid;
    place-items: center;
    transition: border-color 0.2s, background 0.2s;
}

.icon-btn:hover {
    border-color: var(--red);
    background: rgba(225, 6, 0, 0.12);
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.35rem 1.15rem;
}

.nav-item {
    position: relative;
}

.nav-link,
.main-nav a.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    position: relative;
    padding: 0.45rem 0.15rem;
    transition: color 0.2s;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover,
.nav-link.is-active,
.main-nav a.nav-link:hover,
.main-nav a.nav-link.is-active {
    color: #fff;
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.nav-caret {
    transition: transform 0.2s var(--ease);
    opacity: 0.75;
}

.nav-item.is-open > .nav-link .nav-caret,
.has-dropdown:hover > .nav-link .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 280px;
    max-width: min(92vw, 340px);
    padding: 0.45rem;
    background: #121212;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s var(--ease), visibility 0.2s;
    z-index: 120;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #121212;
    border-left: 1px solid var(--border-strong);
    border-top: 1px solid var(--border-strong);
    transform: translateX(-50%) rotate(45deg);
}

.nav-item.is-open > .nav-dropdown,
.has-dropdown:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-icon {
    display: inline-flex;
    opacity: 0.85;
    margin-right: 0.15rem;
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    border-radius: 7px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
}

/* ---------- Page content ---------- */

.page-section {
    padding-top: 3rem;
    min-height: 55vh;
}

.page-wrap {
    max-width: 820px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.breadcrumbs a:hover {
    color: var(--red);
}

.page-title {
    margin: 0 0 0.75rem;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
}

.page-excerpt {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
}

.page-content {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.page-content p {
    margin: 0 0 1rem;
}

.page-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section-subtitle {
    margin: 1.75rem 0 1rem;
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.page-list a {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, transform 0.2s;
}

.page-list a:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.page-list strong {
    display: block;
}

.page-list small {
    color: var(--text-muted);
}

.page-wrap--wide {
    max-width: 900px;
}

.page-featured {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.news-list--page {
    margin-top: 1.5rem;
}

.chart-list--full {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem 1rem;
}

.chart-row {
    cursor: default;
}

.chart-row--vote {
    grid-template-columns: 32px 48px 1fr auto;
}

.chart-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.chart-votes {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
}

.chart-vote-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.chart-play:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ---- Chart page redesign ---- */

.chart-hero {
    position: relative;
    padding: 3.5rem 0 2.5rem;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 51, 0, 0.28), transparent 55%),
        linear-gradient(180deg, #140808 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.chart-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 51, 0, 0.2), transparent 70%);
    pointer-events: none;
}

.chart-hero-inner { position: relative; z-index: 1; }

.chart-kicker {
    margin: 0 0 0.5rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.chart-hero-title {
    margin: 0 0 0.75rem;
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
}

.chart-hero-lead {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.72);
}

.chart-page { padding-top: 2rem; }

.chart-board {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chart-card {
    display: grid;
    grid-template-columns: 64px 88px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    background: linear-gradient(120deg, rgba(22, 22, 22, 0.95), rgba(14, 14, 14, 0.98));
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
    animation: fade-up 0.55s var(--ease) both;
    animation-delay: calc(var(--i, 0) * 0.02s);
}

.chart-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 51, 0, 0.35);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.chart-card.is-top-1 {
    border-color: rgba(255, 51, 0, 0.55);
    background: linear-gradient(120deg, rgba(60, 12, 8, 0.9), rgba(14, 14, 14, 0.98));
}

.chart-card.is-top-2 { border-color: rgba(255, 255, 255, 0.2); }
.chart-card.is-top-3 { border-color: rgba(196, 120, 40, 0.45); }

.chart-card-rank span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-family: var(--display);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    background: #111;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
}

.chart-card.is-top-1 .chart-card-rank span {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.chart-card-cover {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
}

.chart-card-cover.is-playable {
    cursor: pointer;
}

.chart-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chart-card-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.chart-card-cover.is-playable:hover .chart-card-play,
.chart-card-cover.is-playable:focus-visible .chart-card-play { opacity: 1; }

.chart-card-meta strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.25;
}

.chart-card-title.is-playable {
    cursor: pointer;
    transition: color 0.2s;
}

.chart-card-title.is-playable:hover,
.chart-card-title.is-playable:focus-visible {
    color: var(--red);
}

.chart-row img.is-playable,
.chart-meta strong.is-playable {
    cursor: pointer;
}

.chart-meta strong.is-playable:hover,
.chart-meta strong.is-playable:focus-visible {
    color: var(--red);
}

.chart-card-meta span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.chart-vote-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    min-width: 56px;
    padding: 0.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.vote-arrow {
    width: 36px;
    height: 28px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

.vote-arrow:hover {
    background: rgba(255, 51, 0, 0.15);
    color: var(--red);
}

.vote-arrow--down:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.vote-score {
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #fff;
}

.chart-vote-stack.has-voted {
    border-color: rgba(255, 51, 0, 0.4);
}

.vote-wait-modal[hidden] { display: none !important; }

.vote-wait-modal {
    position: fixed;
    inset: 0;
    z-index: 420;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.vote-wait-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.vote-wait-box {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: #151515;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    box-shadow: var(--shadow);
    animation: fade-up 0.35s var(--ease) both;
}

.vote-wait-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.vote-wait-box h2 {
    margin: 0 0 0.5rem;
    font-family: var(--display);
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.vote-wait-box p {
    margin: 0 0 0.75rem;
    color: var(--text-muted);
}

.vote-wait-timer {
    font-family: var(--display);
    font-size: 1.8rem !important;
    color: var(--red) !important;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem !important;
}

@media (max-width: 720px) {
    .chart-card {
        grid-template-columns: 48px 64px 1fr auto;
        gap: 0.65rem;
        padding: 0.75rem;
    }

    .chart-card-rank span {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
        border-radius: 10px;
    }

    .chart-card-cover {
        width: 58px;
        height: 58px;
        border-radius: 10px;
    }

    .chart-card-meta strong { font-size: 0.95rem; }
}

/* YouTube popup */
.yt-modal[hidden] {
    display: none !important;
}

.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.yt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.yt-modal-box {
    position: relative;
    z-index: 1;
    width: 500px;
    height: 500px;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    border: 1px solid var(--border-strong);
}

.yt-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.yt-modal-close:hover {
    background: var(--red);
}

.yt-modal-frame,
.yt-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- Ad banners 728x90 ---------- */

.ad-slot--728 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
}

.ad-slot--sticky {
    position: sticky;
    top: var(--header-h);
    z-index: 90;
    padding: 0.65rem 1rem;
    background: linear-gradient(180deg, #160b08 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 51, 0, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.ad-banner {
    width: min(100%, 728px);
    height: 90px;
    background: #111;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ad-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.ad-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ad-slot[data-ad-rotate] {
    gap: 0;
}

.ad-slot[data-ad-rotate] .ad-banner {
    display: none;
    animation: none;
}

.ad-slot[data-ad-rotate] .ad-banner.is-active {
    display: block;
    animation: ad-fade 0.45s ease;
}

@keyframes ad-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ad-slot--inline {
    margin: 0 auto 1.75rem;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    max-width: 728px;
}

.ad-slot--footer {
    border-top: 1px solid var(--border);
    border-bottom: 0;
    margin-top: 0;
}

.nav-dropdown a:hover {
    background: rgba(255, 51, 0, 0.12);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.45rem;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: grid;
    place-items: center;
    color: #fff;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-icon:hover {
    background: var(--red);
    border-color: var(--red);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h) - var(--player-h, 110px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.04);
    animation: hero-zoom 18s var(--ease) infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.25) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(7, 7, 7, 0.15) 45%, rgba(7, 7, 7, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0 3rem;
    max-width: 680px;
    margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
    margin-right: auto;
    animation: fade-up 0.9s var(--ease) both;
}

.hero-brand {
    margin-bottom: 1.25rem;
}

.hero-title {
    margin: 0 0 1rem;
    font-family: var(--display);
    font-size: clamp(2.8rem, 7vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.hero-title .accent {
    color: var(--red);
}

.hero-lead {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    max-width: 28rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* ---------- Player (sticky bottom) ---------- */

.player--sticky,
.player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    margin: 0;
    padding: 0.65rem 0 calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(8, 8, 8, 0.94);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(16px);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.player-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
}

.player-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 0.35rem 0;
}

.player-label,
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 0.55rem;
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 var(--red-glow);
    animation: pulse 1.6s infinite;
}

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

.player-show img,
.player-show-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #000;
}

.player-status {
    margin: 0;
    padding: 0 0 0.75rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.player-btn.is-loading {
    opacity: 0.75;
    animation: pulse 1.2s infinite;
}

.player-show strong {
    display: block;
    font-size: 1rem;
}

.player-show span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.player-show-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.player-program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.2rem;
    width: fit-content;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 51, 0, 0.55);
    padding-bottom: 1px;
}

.player-program-link:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

.player-controls .live-badge {
    position: absolute;
    top: -1.1rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.player-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 var(--red-glow);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.player-btn:hover {
    background: var(--red-hot);
    transform: scale(1.05);
}

.player-btn.is-playing {
    box-shadow: 0 0 0 10px var(--red-glow);
}

.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 36px;
    min-width: 140px;
}

.waveform span {
    width: 3px;
    height: var(--h, 40%);
    border-radius: 2px;
    background: var(--red);
    opacity: 0.55;
    transform-origin: center;
}

.player-btn.is-playing + .waveform span,
.waveform.is-active span {
    animation: wave 0.9s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.05s);
    opacity: 1;
}

.waveform span:nth-child(odd) { --i: 1; }
.waveform span:nth-child(3n) { --i: 2; }
.waveform span:nth-child(4n) { --i: 3; }
.waveform span:nth-child(5n) { --i: 4; }

.volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    min-width: 120px;
}

.volume input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 90px;
    height: 4px;
    border-radius: 4px;
    background: #333;
    outline: none;
}

.volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
}

/* ---------- Sections ---------- */

.section {
    padding: 5rem 0;
}

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

.section-head h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
}

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

.carousel-nav {
    display: flex;
    gap: 0.4rem;
}

/* ---------- Shows ---------- */

.shows {
    background: var(--bg);
}

.shows-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.shows-track::-webkit-scrollbar {
    display: none;
}

.show-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid transparent;
    scroll-snap-align: start;
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.show-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.show-card:hover {
    transform: translateY(-4px);
}

.show-card:hover img {
    transform: scale(1.05);
}

.show-card.is-live {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red), var(--shadow);
}

.show-live-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    background: var(--red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.55rem;
    border-radius: 4px;
}

.show-card-body {
    padding: 1rem 1rem 1.15rem;
}

.show-card-body h3 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
}

.show-card-body p,
.show-card-body time {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.show-card-body time {
    display: block;
    margin-top: 0.35rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.8rem;
}

/* ---------- Dual: News + Chart ---------- */

.dual {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    border-block: 1px solid var(--border);
}

.dual-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    align-items: start;
}

.news-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.news-thumb img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.news-item:hover .news-thumb img {
    transform: scale(1.06);
}

.news-body time {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.news-body h3 {
    margin: 0.25rem 0 0.4rem;
    font-size: 1.05rem;
    line-height: 1.3;
}

.news-body h3 a:hover {
    color: var(--red);
}

.news-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.chart-block {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.25rem 1.4rem;
}

.chart-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.1rem;
}

.chart-row {
    display: grid;
    grid-template-columns: 32px 44px 1fr 34px;
    gap: 0.7rem;
    align-items: center;
    padding: 0.45rem 0.35rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.chart-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.chart-rank {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.chart-row:first-child .chart-rank {
    color: var(--red);
}

.chart-row img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
}

.chart-meta strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.25;
}

.chart-meta span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.chart-play {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: grid;
    place-items: center;
    transition: background 0.2s, border-color 0.2s;
}

.chart-play:hover {
    background: var(--red);
    border-color: var(--red);
}

/* ---------- Обяви ---------- */

.obqvi {
    padding-top: 3rem;
    padding-bottom: 2rem;
    background: var(--bg-elevated);
}

.obqvi-lead {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 40rem;
}

.ads-hero {
    padding: 3.25rem 0 2.25rem;
    background:
        radial-gradient(ellipse at 75% 0%, rgba(255, 51, 0, 0.24), transparent 55%),
        linear-gradient(180deg, #120808 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
}

.ads-kicker {
    margin: 0 0 0.45rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ads-hero-title {
    margin: 0 0 0.65rem;
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ads-hero-lead {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.7);
}

.ads-page { padding-top: 2rem; }

.ads-intro {
    margin-bottom: 2rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(36, 14, 10, 0.9), rgba(12, 12, 12, 0.98));
}

.ads-intro h2 {
    margin: 0 0 0.9rem;
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.ads-intro-content p {
    margin: 0 0 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.ads-intro-content a { color: var(--red); }

.ads-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.ads-cats { margin-bottom: 1.5rem; }

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

.ads-grid--home { margin-top: 0.5rem; }

.ads-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(22, 14, 12, 0.95), rgba(10, 10, 10, 0.98));
    transition: transform 0.25s var(--ease), border-color 0.25s;
    animation: fade-up 0.45s var(--ease) both;
    animation-delay: calc(var(--i, 0) * 0.04s);
}

.ads-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 51, 0, 0.4);
}

.ads-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
}

.ads-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ads-card-body {
    padding: 1.05rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.ads-card-body h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.3;
}

.ads-card-body h3 a:hover { color: var(--red); }

.ads-card-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    flex: 1;
}

.ads-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-weight: 600;
}

.ads-phone:hover { color: var(--red); }

.ads-single-phone { margin: 1.25rem 0 0; }

@media (max-width: 980px) {
    .ads-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .ads-grid { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease), filter 0.35s;
    filter: saturate(1.05) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.15) contrast(1.1);
}

/* ---------- App banner ---------- */

.app-banner {
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255, 40, 30, 0.35), transparent 55%),
        linear-gradient(105deg, #6d0500 0%, #c00800 45%, #8a0600 100%);
    padding: 3.5rem 0;
    overflow: hidden;
}

.app-banner-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 2rem;
    align-items: center;
}

.app-copy h2 {
    margin: 0 0 0.85rem;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    max-width: 16ch;
}

.app-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 32rem;
}

.phone-frame {
    width: 170px;
    margin-inline: auto;
    padding: 10px;
    border-radius: 28px;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
    animation: float 4.5s ease-in-out infinite;
}

.phone-screen {
    background: linear-gradient(180deg, #111 0%, #1a0505 100%);
    border-radius: 20px;
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.phone-wave {
    width: 70%;
    height: 28px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--red) 0 3px,
            transparent 3px 6px
        );
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    opacity: 0.85;
}

.phone-screen p {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--red);
}

.phone-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    display: grid;
    place-items: center;
}

.app-stores {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.store-badge {
    transition: transform 0.25s var(--ease), opacity 0.25s;
    opacity: 0.95;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* ---------- Footer ---------- */

.site-footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 1rem 0 1.25rem;
    max-width: 28ch;
}

.footer-col h4 {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--red);
}

.footer-contacts .btn {
    margin-top: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-credit {
    color: var(--red);
    font-weight: 700;
}

.footer-credit strong {
    color: var(--red);
    font-weight: 700;
}

.footer-credit span {
    color: var(--red);
}

/* ---------- Modal (greetings) ---------- */

.modal[hidden] {
    display: none !important;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    background: #141414;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow);
    animation: fade-up 0.35s var(--ease) both;
}

.modal-close {
    position: absolute;
    top: 0.55rem;
    right: 0.75rem;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-muted);
}

.modal-close:hover {
    color: #fff;
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 51, 0, 0.15);
    color: var(--red);
    display: grid;
    place-items: center;
}

.modal-dialog h2 {
    margin: 0 0 0.5rem;
    font-family: var(--display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.modal-dialog p {
    margin: 0 0 1.35rem;
    color: var(--text-muted);
}

/* ---------- Motion ---------- */

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-zoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(225, 6, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); }
}

@keyframes wave {
    0%, 100% { transform: scaleY(0.45); }
    50% { transform: scaleY(1.15); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
    .player-inner {
        grid-template-columns: 1fr 1fr;
    }

    .player-schedule-btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .dual-grid {
        grid-template-columns: 1fr;
    }

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

    .app-banner-inner {
        grid-template-columns: 1fr 1fr;
    }

    .app-stores {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        margin: 0;
        background: rgba(7, 7, 7, 0.97);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.25rem 1.25rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s var(--ease), opacity 0.3s;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        min-width: 0;
        margin: 0.25rem 0 0.5rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        box-shadow: none;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-item.is-open > .nav-dropdown {
        display: block;
        transform: none;
    }

    .has-dropdown:hover > .nav-dropdown {
        display: none;
    }

    .nav-item.is-open.has-dropdown:hover > .nav-dropdown,
    .nav-item.is-open > .nav-dropdown {
        display: block;
    }

    .social-links--header {
        display: none;
    }

    .header-actions .btn--listen,
    .header-actions .btn--listen-greet {
        gap: 0;
        padding: 0.7rem;
        width: 42px;
        height: 42px;
        font-size: 0;
        letter-spacing: 0;
    }

    .header-actions .btn--listen svg,
    .header-actions .btn--listen-greet svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 720px) {
    .hero-content {
        padding: 2rem 0 2rem;
        margin-left: 1.25rem;
        width: calc(100% - 2.5rem);
    }

    .player-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .player-controls {
        justify-content: flex-start;
        padding-top: 0.75rem;
    }

    .player-controls .live-badge {
        left: 0;
        transform: none;
    }

    .volume {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:last-child {
        display: none;
    }

    .app-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-copy h2 {
        max-width: none;
    }

    .app-stores {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .news-item {
        grid-template-columns: 88px 1fr;
    }

    .news-thumb img {
        width: 88px;
        height: 88px;
    }
}

/* ---- News archive & article ---- */
.news-archive-hero {
    padding: 3.25rem 0 2.25rem;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 51, 0, 0.24), transparent 55%),
        linear-gradient(180deg, #120808 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
}

.news-archive-kicker {
    margin: 0 0 0.45rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.news-archive-title {
    margin: 0 0 0.65rem;
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.news-archive-lead {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.7);
}

.news-archive { padding-top: 2rem; }

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

.news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(22, 14, 12, 0.95), rgba(10, 10, 10, 0.98));
    transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
    animation: fade-up 0.5s var(--ease) both;
    animation-delay: calc(var(--i, 0) * 0.04s);
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 51, 0, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.news-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #111;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}

.news-card:hover .news-card-media img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.news-card-body h2 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.3;
}

.news-card-body h2 a:hover { color: var(--red); }

.news-card-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    flex: 1;
}

.news-card-more {
    margin-top: 0.45rem;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-article-hero {
    position: relative;
    padding: 3.5rem 0 2.5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.news-article-hero--plain {
    background:
        radial-gradient(ellipse at 30% 0%, rgba(255, 51, 0, 0.22), transparent 55%),
        #0a0a0a;
}

.news-article-bg {
    position: absolute;
    inset: 0;
}

.news-article-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.9);
}

.news-article-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(7, 7, 7, 0.92));
}

.news-article-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.news-article-title {
    margin: 0.5rem 0 0.75rem;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.news-article-excerpt {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.55;
}

.news-article-wrap {
    max-width: 48rem;
}

.news-article-content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-article-back {
    margin-top: 2rem;
}

@media (max-width: 980px) {
    .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* ---- News categories ---- */
.news-page-lead {
    margin: -0.5rem 0 1.5rem;
    color: var(--text-muted);
    max-width: 40rem;
}

.news-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.news-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.news-cat span {
    font-size: 0.75rem;
    opacity: 0.7;
}

.news-cat:hover {
    color: #fff;
    border-color: rgba(255, 51, 0, 0.45);
}

.news-cat.is-active {
    color: #fff;
    background: rgba(255, 51, 0, 0.18);
    border-color: var(--red);
}

.news-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.35rem;
}

.news-meta-row time {
    margin: 0 !important;
}

.news-meta-row--single {
    margin-bottom: 0.75rem;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 51, 0, 0.14);
    border: 1px solid rgba(255, 51, 0, 0.35);
    color: #ff8a66;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-badge:hover {
    color: #fff;
    border-color: var(--red);
}

.news-empty {
    color: var(--text-muted);
    padding: 2rem 0;
}

/* ---- Shows page ---- */
.shows-hero {
    position: relative;
    padding: 3.5rem 0 2.5rem;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(255, 51, 0, 0.26), transparent 55%),
        linear-gradient(180deg, #120808 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
}

.shows-hero-inner { position: relative; z-index: 1; }

.shows-kicker {
    margin: 0 0 0.5rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.shows-hero-title {
    margin: 0 0 0.75rem;
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
}

.shows-hero-lead {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.72);
}

.shows-page { padding-top: 2.25rem; }

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

.show-card--page {
    width: auto;
    min-width: 0;
    animation: fade-up 0.5s var(--ease) both;
    animation-delay: calc(var(--i, 0) * 0.04s);
}

.show-desc {
    margin-top: 0.65rem !important;
    font-size: 0.88rem !important;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65) !important;
}

@media (max-width: 980px) {
    .shows-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .shows-grid { grid-template-columns: 1fr; }
}

/* ---- Contact page ---- */
.contact-hero {
    position: relative;
    padding: 3.5rem 0 2.5rem;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(255, 51, 0, 0.25), transparent 50%),
        linear-gradient(180deg, #120808 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.contact-hero-inner { position: relative; z-index: 1; }

.contact-kicker {
    margin: 0 0 0.5rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hero-title {
    margin: 0 0 0.75rem;
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-hero-lead {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
}

.contact-page { padding-top: 2.5rem; }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) 1.4fr;
    gap: 2rem;
    align-items: start;
}

.contact-aside h2,
.contact-form-card h2 {
    margin: 0 0 0.75rem;
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.contact-info {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-info a,
.contact-info span:last-child {
    color: #fff;
    font-size: 1rem;
}

.contact-info a:hover { color: var(--red); }

.contact-social {
    display: flex;
    gap: 0.65rem;
}

.contact-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.contact-social a:hover {
    color: #fff;
    border-color: var(--red);
    background: rgba(255, 51, 0, 0.12);
}

.contact-form-card {
    padding: 1.75rem 1.5rem 1.5rem;
    background:
        linear-gradient(145deg, rgba(28, 14, 12, 0.9), rgba(12, 12, 12, 0.98));
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.contact-form-lead {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

.contact-form-alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.92rem;
}

.contact-form-alert[hidden] { display: none !important; }

.contact-form-alert.is-ok {
    background: rgba(40, 140, 80, 0.15);
    border: 1px solid rgba(70, 180, 110, 0.4);
    color: #9be7b5;
}

.contact-form-alert.is-err {
    background: rgba(255, 51, 0, 0.12);
    border: 1px solid rgba(255, 51, 0, 0.4);
    color: #ffb09a;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
}

.contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form label span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 51, 0, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 51, 0, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Greetings page ---- */
.greet-hero {
    position: relative;
    padding: 3.5rem 0 2.5rem;
    background:
        radial-gradient(ellipse at 70% 0%, rgba(255, 51, 0, 0.26), transparent 55%),
        linear-gradient(180deg, #120808 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
}

.greet-hero-inner { position: relative; z-index: 1; }

.greet-kicker {
    margin: 0 0 0.5rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.greet-hero-title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: 0.03em;
    font-weight: 400;
    text-transform: uppercase;
}

.greet-page { padding-top: 2.25rem; }

.greet-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.greet-sms-card {
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(22, 12, 10, 0.95), rgba(10, 10, 10, 0.98));
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.greet-sms-card h2,
.greet-sms-card h3 {
    margin: 1.25rem 0 0.75rem;
    color: #fff;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.greet-sms-card h3:first-child,
.greet-sms-card h2:first-child {
    margin-top: 0;
}

.greet-sms-card p {
    margin: 0 0 0.9rem;
}

.greet-sms-card ul {
    margin: 0.75rem 0 1.1rem;
    padding-left: 1.15rem;
}

.greet-sms-card li {
    margin-bottom: 0.55rem;
}

.greet-sms-note {
    margin-top: 1.25rem !important;
    padding: 0.75rem 0.9rem;
    border-left: 3px solid var(--red);
    background: rgba(255, 51, 0, 0.1);
    color: #fff !important;
}

.greet-form-card {
    padding: 1.75rem 1.5rem 1.5rem;
    background: linear-gradient(145deg, rgba(28, 14, 12, 0.9), rgba(12, 12, 12, 0.98));
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.greet-form-card h2 {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    color: var(--red);
    font-weight: 700;
    line-height: 1.3;
}

.greet-request-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.greet-row {
    display: grid;
    grid-template-columns: minmax(140px, 0.85fr) 1.4fr;
    gap: 0.85rem;
    align-items: center;
}

.greet-row--top { align-items: start; }

.greet-row > label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.35;
}

.greet-row > label em,
.greet-row > label small {
    color: var(--red);
    font-style: normal;
    font-weight: 600;
}

.greet-row input,
.greet-row select,
.greet-row textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    font: inherit;
}

.greet-row textarea { resize: vertical; min-height: 110px; }

.greet-message-wrap { position: relative; }

.greet-counter {
    display: block;
    margin-top: 0.35rem;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.greet-terms {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.4;
}

.greet-terms input { margin-top: 0.2rem; }

.greet-terms a {
    color: var(--red);
    text-decoration: underline;
}

.greet-price-box {
    margin-top: 0.5rem;
    padding: 1rem 1.05rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.25);
}

.greet-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.9rem;
    color: #fff;
}

.greet-pay-block strong { display: block; margin-bottom: 0.35rem; color: #fff; }
.greet-pay-block p { margin: 0 0 0.55rem; color: var(--text-muted); font-size: 0.92rem; }

.greet-pay-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}

.greet-pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
}

.greet-pay-chip input { accent-color: var(--red); }

.greet-pay-hint { font-size: 0.85rem !important; }
.greet-pay-hint--warn { color: #ffb09a !important; }

.greet-required-note {
    margin: 0.25rem 0 0;
    color: var(--red);
    font-size: 0.85rem;
}

.greet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

@media (max-width: 900px) {
    .greet-layout { grid-template-columns: 1fr; }
    .greet-row { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* ---------- Advertise page ---------- */

.adpage-hero {
    position: relative;
    min-height: clamp(280px, 42vw, 420px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.adpage-hero-media {
    position: absolute;
    inset: 0;
}

.adpage-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.adpage-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.55) 48%, rgba(7, 7, 7, 0.35) 100%),
        linear-gradient(0deg, rgba(7, 7, 7, 0.92) 0%, transparent 55%);
}

.adpage-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 2.35rem;
    max-width: 40rem;
}

.adpage-kicker {
    margin: 0 0 0.4rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.adpage-hero-title {
    margin: 0 0 0.65rem;
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.05;
}

.adpage-hero-lead {
    margin: 0 0 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.5;
}

.adpage-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.adpage { padding-top: 2rem; }

.adpage-wrap {
    max-width: 820px;
}

.adpage-block {
    margin: 0 0 2rem;
}

.adpage-block h2,
.adpage-related h2,
.adpage-contact h2 {
    margin: 0 0 0.85rem;
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.adpage-block p,
.adpage-offer p {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.adpage-sub {
    margin: -0.35rem 0 1rem !important;
    color: var(--red) !important;
    font-weight: 600;
    font-size: 1.02rem;
}

.adpage-related {
    margin: 0 0 2rem;
    padding: 1.15rem 1.2rem;
    border-left: 3px solid var(--red);
    background: rgba(255, 51, 0, 0.06);
}

.adpage-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.adpage-related a {
    color: #fff;
    font-weight: 600;
}

.adpage-related a:hover { color: var(--red); }

.adpage-contact {
    margin: 0 0 2.25rem;
    padding: 1.35rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(36, 14, 10, 0.92), rgba(12, 12, 12, 0.98));
}

.adpage-contact-brand {
    margin: 0 0 0.55rem !important;
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff !important;
}

.adpage-contact p {
    margin: 0 0 0.35rem;
    color: rgba(255, 255, 255, 0.85);
}

.adpage-contact a { color: var(--red); font-weight: 600; }

.adpage-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.adpage-freqs {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1rem;
}

.adpage-freqs li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.adpage-freqs span { color: var(--text-muted); }
.adpage-freqs strong { color: #fff; letter-spacing: 0.02em; }

.adpage-offer {
    margin: 0 0 1.5rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--border);
}

.adpage-offer:last-of-type { border-bottom: 0; }

.adpage-offer h3 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
    color: #fff;
}

@media (max-width: 640px) {
    .adpage-freqs { grid-template-columns: 1fr; }
    .adpage-hero-inner { max-width: none; }
}

/* ---------- Site banner ads page ---------- */

.sitead-hero {
    padding: 3rem 0 2rem;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(31, 143, 58, 0.18), transparent 50%),
        linear-gradient(180deg, #0c120e 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
}

.sitead-kicker {
    margin: 0 0 0.4rem;
    color: #2db34b;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sitead-hero-title {
    margin: 0 0 0.55rem;
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.sitead-hero-lead {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.72);
}

.sitead-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
}

.sitead-copy {
    padding: 0.2rem 0.25rem 0 0;
}

.sitead-copy-kicker {
    margin: 0 0 0.45rem;
    color: #2db34b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sitead-copy h2 {
    margin: 0 0 0.75rem;
    font-family: var(--display);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

.sitead-copy-lead {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.65;
}

.sitead-steps {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.sitead-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
}

.sitead-steps span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 179, 75, 0.15);
    border: 1px solid rgba(45, 179, 75, 0.45);
    color: #2db34b;
    font-weight: 700;
    font-size: 0.9rem;
}

.sitead-steps strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #fff;
    font-size: 1rem;
}

.sitead-steps p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 0.95rem;
}

.sitead-copy-box,
.sitead-copy-prices {
    margin: 0 0 1.25rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.sitead-copy-box h3,
.sitead-copy-prices h3 {
    margin: 0 0 0.7rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.sitead-copy-box ul,
.sitead-copy-prices ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitead-copy-box li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.sitead-copy-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #2db34b;
}

.sitead-copy-prices li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.sitead-copy-prices li:last-child { border-bottom: 0; }
.sitead-copy-prices strong { color: #2db34b; }

.sitead-copy-help {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.sitead-copy-help a {
    color: #2db34b;
    font-weight: 600;
}

.sitead-form-wrap {
    min-width: 0;
}

.sitead-form-card {
    padding: 1.5rem 1.45rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(16, 22, 18, 0.95), rgba(10, 10, 10, 0.98));
    position: sticky;
    top: 5.5rem;
}

.sitead-form-card h2 {
    margin: 0 0 0.35rem;
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sitead-form-lead {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.sitead-form {
    display: grid;
    gap: 0.95rem;
}

.sitead-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
}

.sitead-form input,
.sitead-form select {
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #0c0c0c;
    color: #fff;
    font-weight: 400;
}

.sitead-price-line {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.sitead-price-line strong { color: #2db34b; }

.sitead-toggle {
    display: inline-flex;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    width: fit-content;
}

.sitead-toggle-btn {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}

.sitead-toggle-btn.is-active {
    background: #fff;
    color: #111;
}

.sitead-hint {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.sitead-image-panel.is-hidden { display: none; }

.sitead-preview {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px dashed rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-muted);
    overflow: hidden;
    padding: 0.75rem;
}

.sitead-preview img {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sitead-pay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sitead-pay-card {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    color: #fff !important;
    font-weight: 600;
    flex-direction: row !important;
}

.sitead-pay-card:has(input:checked) {
    border-color: rgba(255, 51, 0, 0.65);
    background: rgba(255, 51, 0, 0.1);
}

.sitead-unavailable { color: var(--text-muted); }

@media (max-width: 960px) {
    .sitead-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .sitead-form-card { position: static; }
}

@media (max-width: 560px) {
    .sitead-pay { grid-template-columns: 1fr; }
}

/* ---------- Alternative players ---------- */

.players-hero {
    padding: 3rem 0 2rem;
    background:
        radial-gradient(ellipse at 70% 0%, rgba(255, 51, 0, 0.2), transparent 55%),
        linear-gradient(180deg, #120808 0%, #070707 100%);
    border-bottom: 1px solid var(--border);
}

.players-kicker {
    margin: 0 0 0.4rem;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.players-hero-title {
    margin: 0 0 0.55rem;
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.players-hero-lead {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.72);
}

.players-wrap { max-width: 980px; }

.players-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 0 1.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(36, 14, 10, 0.9), rgba(12, 12, 12, 0.98));
}

.players-mini-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
}

.players-mini-brand strong {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.95rem;
}

.players-audio--mini {
    flex: 1;
    min-width: 200px;
    max-width: 420px;
    height: 36px;
}

.players-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.players-block {
    margin: 0 0 1.35rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.players-block h2 {
    margin: 0 0 0.35rem;
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.players-block > p {
    margin: 0 0 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.players-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.players-block--embed {
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .players-grid { grid-template-columns: 1fr; }
    .players-embed-grid { grid-template-columns: 1fr; }
}

.players-live-card {
    padding: 1.15rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(36, 14, 10, 0.9), rgba(12, 12, 12, 0.98));
}

.players-live-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.85rem;
}

.players-live-meta strong { font-size: 1.1rem; }
.players-live-meta > span:last-child { color: var(--text-muted); font-size: 0.9rem; }

.players-audio { width: 100%; }

.players-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.players-code-label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 600;
}

.players-code-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    align-items: start;
}

.players-code-row input,
.players-code-row textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #0c0c0c;
    color: #fff;
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.8rem;
    resize: vertical;
}

.players-embed-item {
    margin: 0 0 1.35rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.players-embed-item h3 {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}

.players-embed-preview {
    margin-bottom: 0.9rem;
}

.players-also {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
}

.players-also a {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 51, 0, 0.5);
}

.players-also a:hover { color: var(--red); }

.players-block--also {
    overflow: hidden;
}

.vega-partner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background:
        radial-gradient(ellipse 90% 80% at 10% 50%, rgba(255, 51, 0, 0.22), transparent 55%),
        linear-gradient(135deg, #1a1a1f 0%, #101014 55%, #161018 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}

.vega-partner:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 51, 0, 0.45);
    box-shadow: 0 14px 36px rgba(255, 51, 0, 0.18);
}

.vega-partner__glow {
    position: absolute;
    inset: auto -20% -40% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 51, 0, 0.28), transparent 70%);
    pointer-events: none;
}

.vega-partner__logo {
    position: relative;
    z-index: 1;
    width: min(42%, 160px);
    height: auto;
    max-height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease;
}

.vega-partner:hover .vega-partner__logo {
    transform: scale(1.04);
}

.vega-partner__meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.vega-partner__label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.vega-partner__name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.vega-partner__cta {
    margin-top: 0.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--red);
}

@media (max-width: 520px) {
    .vega-partner {
        flex-direction: column;
        text-align: center;
        gap: 0.85rem;
    }

    .vega-partner__logo {
        width: min(70%, 180px);
        max-height: 80px;
    }
}

.players-greet-list {
    margin: 0 0 1.1rem;
    padding-left: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

.players-greet-list li { margin: 0 0 0.55rem; }
.players-greet-list a { color: var(--red); font-weight: 600; }

.players-freqs {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}

.players-freqs li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.players-freqs span { color: var(--text-muted); }
.players-freqs strong { color: #fff; }

.players-subhead {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .players-code-row { grid-template-columns: 1fr; }
    .players-freqs { grid-template-columns: 1fr; }
}
