:root {
    --bg: #000;
    --bg-2: #0a0a0a;
    --fg: #f5f5f5;
    --fg-dim: #b8b8b8;
    --accent: #ffcc00;
    --accent-fg: #111;
    --radius: 10px;
    --max-player: 400px;
    --max-content: 480px;
}

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

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 16px 16px;
    background: radial-gradient(circle at 50% 0%, var(--bg-2) 0%, var(--bg) 70%);
}

.hero__inner {
    width: 100%;
    max-width: var(--max-content);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__header {
    text-align: center;
}

.hero__title {
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.25;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero__subtitle {
    color: var(--fg-dim);
    font-size: 14px;
    margin: 0;
}

.player {
    width: 100%;
    max-width: var(--max-player);
    margin: 0 auto;
    background: #000;
    border-radius: var(--radius);
}

.player vturb-smartplayer {
    display: block;
    width: 100% !important;
    max-width: var(--max-player) !important;
}

.cta {
    width: 100%;
    max-width: var(--max-player);
    margin: 0 auto;
    text-align: center;
    transition: opacity .35s ease, transform .35s ease;
}

.cta--hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.cta__button {
    display: block;
    width: 100%;
    padding: 18px 20px;
    background: var(--accent);
    color: var(--accent-fg);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.18);
    transition: transform .12s ease, box-shadow .2s ease;
}

.cta__button:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255, 204, 0, 0.28); }
.cta__button:active { transform: translateY(0); }

.cta__hint {
    color: var(--fg-dim);
    font-size: 12px;
    margin: 10px 0 0;
}

.footer {
    --gold: #d8b15a;
    --gold-soft: rgba(216, 177, 90, 0.45);
    text-align: center;
    color: var(--fg-dim);
    font-size: 13px;
    padding: 16px 16px 24px;
    background: #fff;
    color: #4a4a4a;
}

.footer__divider {
    position: relative;
    height: 1px;
    max-width: 920px;
    margin: 0 auto 20px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-soft) 12%,
        var(--gold) 50%,
        var(--gold-soft) 88%,
        transparent 100%
    );
}

.footer__divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px var(--gold-soft);
}
.footer__divider-icon svg { width: 20px; height: 20px; }

.footer__seals {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__seals li { display: inline-flex; }
.footer__seals img {
    height: 38px;
    width: auto;
    display: block;
}

.footer__copy {
    margin: 0 0 14px;
    font-size: 14px;
    color: #4a4a4a;
}

.footer__links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}
.footer__links a {
    color: #4a4a4a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer__links a:hover { color: #111; }
.footer__icon { width: 16px; height: 16px; }
.footer__sep { color: #c9c9c9; }

@media (max-width: 480px) {
    .footer__seals img { height: 32px; }
    .footer__seals { gap: 16px; }
    .footer__links { font-size: 13px; }
}

@media (min-width: 768px) {
    .hero { padding: 48px 24px 24px; }
    .hero__title { font-size: 28px; }
    .hero__subtitle { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    .cta { transition: none; }
}
