/* Regal Play Studio — Jackpot Odyssey promo (standalone stylesheet) */
:root {
    --bg-deep: #0c0f14;
    --bg-panel: #151b26;
    --bg-elevated: #1c2534;
    --border: rgba(232, 184, 77, 0.22);
    --text: #eef2f8;
    --muted: #9aa7bd;
    --gold: #e8b84d;
    --gold-dim: #c49a3c;
    --teal: #42d6c8;
    --purple-glow: rgba(120, 72, 220, 0.35);
    --radius: 14px;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --max: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-deep);
    background-image:
        radial-gradient(
            ellipse 120% 80% at 10% -20%,
            var(--purple-glow),
            transparent 55%
        ),
        radial-gradient(
            ellipse 90% 60% at 100% 10%,
            rgba(66, 214, 200, 0.12),
            transparent 50%
        ),
        linear-gradient(180deg, #0c0f14 0%, #0a0d12 100%);
    min-height: 100vh;
}

a {
    color: var(--teal);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* ——— Age gate ——— */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 8, 12, 0.92);
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-card {
    width: min(440px, 100%);
    padding: 28px 26px 24px;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--border);
    background: linear-gradient(165deg, var(--bg-panel), #121722);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.age-card h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--gold);
}

.age-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.age-slider-wrap label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.age-slider-track {
    position: relative;
    height: 48px;
    border-radius: 999px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    overflow: hidden;
}

.age-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(
        90deg,
        rgba(66, 214, 200, 0.25),
        rgba(232, 184, 77, 0.35)
    );
    pointer-events: none;
    border-radius: 999px;
}

input[type='range'].age-slider {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 48px;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
}

.age-knob {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold), var(--gold-dim));
    box-shadow: 0 4px 18px rgba(232, 184, 77, 0.45);
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1a1206;
}

.age-enter {
    margin-top: 18px;
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--teal), #2eb8aa);
    color: #061016;
    cursor: pointer;
    opacity: 0.45;
    pointer-events: none;
    transition:
        opacity 0.2s,
        transform 0.15s;
}

.age-enter.ready {
    opacity: 1;
    pointer-events: auto;
}

.age-enter.ready:hover {
    transform: translateY(-1px);
}

.age-hint {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

/* ——— Layout ——— */
.wrap {
    width: min(var(--max), 100% - 40px);
    margin-inline: auto;
}

.site-top {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(12, 15, 20, 0.85);
    backdrop-filter: blur(12px);
}

.top-disclaimer {
    background: linear-gradient(90deg, rgba(196, 154, 60, 0.18), rgba(66, 214, 200, 0.12));
    border-bottom: 1px solid var(--border);
    font-size: 0.8125rem;
    line-height: 1.45;
    text-align: center;
}

.top-disclaimer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 16px;
    color: var(--muted);
}

.top-disclaimer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(232, 184, 77, 0.45);
    background: rgba(232, 184, 77, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.top-disclaimer-text {
    margin: 0;
    max-width: 52rem;
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(12, 15, 20, 0.85);
    backdrop-filter: blur(12px);
}

.site-top .site-header {
    border-bottom: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.brand:hover {
    text-decoration: none;
    color: var(--gold);
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

nav.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}

nav.main-nav a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

nav.main-nav a:hover,
nav.main-nav a.active {
    color: var(--gold);
    text-decoration: none;
}

.hero {
    padding: 48px 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: start;
}

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

.hero h1 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 650;
    line-height: 1.15;
    color: var(--text);
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--teal);
    margin-bottom: 18px;
    font-weight: 500;
}

.hero-intro {
    color: var(--muted);
    margin-bottom: 22px;
}

.feature-list {
    margin: 0 0 24px;
    padding-left: 1.15rem;
    color: var(--text);
}

.feature-list li {
    margin-bottom: 10px;
}

.section-head {
    margin-top: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gold);
}

.deco-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.deco-strip figure {
    margin: 0;
    flex: 1 1 120px;
    min-width: 100px;
    max-width: 160px;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-panel);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.deco-strip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-visual {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    background: linear-gradient(160deg, var(--bg-panel), var(--bg-deep));
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(232, 184, 77, 0.08),
        transparent 45%
    );
    pointer-events: none;
}

.hero-visual-inner {
    position: relative;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 8px;
}

.btn-play-img {
    display: inline-block;
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.btn-play-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 48px rgba(66, 214, 200, 0.22);
}

.btn-play-img img {
    display: block;
    height: 54px;
    width: auto;
    object-fit: contain;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    text-decoration: none;
}

section.panel {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

section.panel.panel-tight-top {
    padding-top: 24px;
}

.games-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
    align-items: stretch;
}

.game-catalog-card {
    display: flex;
    flex-direction: column;
}

.game-catalog-thumb {
    display: block;
    margin: -4px -4px 14px -4px;
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden;
    border: 1px solid rgba(232, 184, 77, 0.15);
    background: var(--bg-deep);
    aspect-ratio: 16 / 9;
    line-height: 0;
}

.game-catalog-thumb:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.game-catalog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-catalog-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.game-catalog-card h3 a {
    color: var(--gold);
}

.game-catalog-card h3 a:hover {
    color: var(--teal);
}

.game-catalog-desc {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1 1 auto;
}

.game-page-lead + .game-iframe-shell {
    margin-top: 20px;
}

.game-iframe-shell {
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    aspect-ratio: 16 / 10;
    max-width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.game-iframe-shell iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 620px) {
    .game-iframe-shell {
        aspect-ratio: 4 / 3;
        min-height: min(420px, 70vh);
    }
}

.video-shell {
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    aspect-ratio: 1335 / 751;
    max-width: 100%;
}

.video-shell iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
    justify-items: center;
}

.shot-card {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-panel);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.shot-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 820px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.card {
    padding: 22px 22px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-panel);
}

.card figure.logo-slot {
    margin: 0 0 14px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card figure.logo-slot img {
    max-height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.card h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
}

.site-footer {
    margin-top: 48px;
    padding: 36px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 12, 18, 0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand strong {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.page-hero {
    padding: 36px 0 28px;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: var(--gold);
}

.page-hero .lead {
    color: var(--muted);
    max-width: 720px;
}

.prose {
    max-width: 800px;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 28px;
    margin-bottom: 12px;
}

.prose p,
.prose li {
    color: var(--muted);
}

.prose ul {
    padding-left: 1.2rem;
}

.page-cta {
    margin: 28px 0 40px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-panel);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.page-cta p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}
