/* Veltraxiss.com — midnight gold Vegas promo shell */
:root {
    --bg: #0f0e17;
    --bg-soft: #1a1829;
    --surface: #222034;
    --surface-2: #2c2844;
    --ink: #f5f0e8;
    --muted: #a89fb8;
    --line: #3d3658;
    --gold: #f5c842;
    --gold-dim: #c9a028;
    --coral: #ff5e3a;
    --coral-soft: rgba(255, 94, 58, 0.15);
    --violet: #7c5cff;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
    --radius: 6px;
    --radius-lg: 14px;
    --font-display: 'Syne', system-ui, sans-serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

figure {
    margin: 0;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(245, 200, 66, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 100%, rgba(255, 94, 58, 0.1), transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #12101c 100%);
    min-height: 100vh;
    padding-bottom: 5rem;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    color: var(--coral);
}

.wrap {
    width: min(1200px, 94vw);
    margin-inline: auto;
    min-width: 0;
}

.contain-img,
.brand-mark img,
.icon-chip img,
.review-avatar img,
.feat-icon img,
.tile-icon img,
.hero-emblem img,
.notice-icon img,
.game-tile-media img,
.shot-frame img,
.gallery-cell img,
.embed-thumb img,
.spotlight-thumb img,
.legal-seal img,
.marquee-chip img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Age gate */
.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 14, 23, 0.88);
    backdrop-filter: blur(16px);
}

.age-overlay[hidden] {
    display: none;
}

.age-card {
    width: min(440px, 100%);
    padding: 2rem 2rem 1.75rem;
    background: var(--surface);
    border: 2px solid var(--gold-dim);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.age-card h1 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    color: var(--gold);
}

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

.slider-row label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.slider-track {
    position: relative;
    height: 44px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dim), var(--coral));
    border-radius: 999px;
    transition: width 0.05s linear;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: grab;
    user-select: none;
    box-shadow: 0 4px 14px rgba(245, 200, 66, 0.4);
    z-index: 2;
}

.slider-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.5rem 0 0;
}

.age-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: stretch;
}

.age-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--muted);
    cursor: pointer;
}

.age-check input {
    margin-top: 0.2rem;
    accent-color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--coral));
    color: var(--bg);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 200, 66, 0.35);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 14, 23, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ink);
    text-decoration: none;
}

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

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--surface-2);
    border: 2px solid var(--gold-dim);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-mark img {
    width: 34px;
    height: 34px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 1.1rem;
}

.nav a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

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

/* Ribbon */
.top-ribbon {
    background: linear-gradient(90deg, var(--coral-soft), transparent 40%, rgba(124, 92, 255, 0.12));
    border-bottom: 1px solid var(--line);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.45rem 1rem;
}

/* Sections */
.section {
    padding: 2.75rem 0;
}

.section-tight {
    padding: 1.75rem 0;
}

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

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.85rem);
    margin: 0 0 1rem;
    color: var(--ink);
}

h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin: 0 0 0.85rem;
    color: var(--gold);
}

h3 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
    color: var(--ink);
}

.hero-lead {
    color: var(--muted);
    margin: 0;
    max-width: 62ch;
}

/* Notice band */
.notice-band {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.notice-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.notice-band p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

/* Hero layout — stacked asymmetric */
.hero-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 900px) {
    .hero-stack {
        grid-template-columns: 1.65fr 1fr;
        align-items: start;
    }
}

.hero-panel {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(245, 200, 66, 0.06));
    pointer-events: none;
}

.hero-emblem {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border: 2px dashed var(--gold-dim);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.hero-emblem img {
    width: 52px;
    height: 52px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 1.25rem;
}

@media (min-width: 560px) {
    .stat-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    padding: 0.75rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.stat-box strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}

.stat-box span {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.3;
}

/* Sidebar card */
.side-card {
    padding: 1.5rem;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius-lg);
}

.side-card h2 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.side-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-card li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
    color: var(--muted);
}

.side-card li:last-child {
    border-bottom: none;
}

.side-card strong {
    color: var(--ink);
}

.side-card code {
    font-size: 0.78rem;
    background: var(--bg-soft);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    color: var(--gold);
}

.icon-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.icon-chip {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.icon-chip img {
    width: 28px;
    height: 28px;
}

/* CTA panel */
.cta-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-top: 1.25rem;
}

.store-link {
    display: inline-block;
    flex-shrink: 0;
    line-height: 0;
}

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

.cta-note {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    flex: 1;
    min-width: 200px;
}

/* Description block */
.desc-block {
    padding: 1.5rem 1.75rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    margin: 1.5rem 0;
}

.desc-block p {
    color: var(--muted);
    margin: 0 0 0.85rem;
}

.desc-block h3 {
    color: var(--coral);
    font-size: 1rem;
    margin-top: 1.1rem;
}

/* Tabs — vertical on desktop */
.tab-shell {
    margin-top: 2rem;
}

.tab-shell > h2 {
    margin-bottom: 1rem;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .tab-layout {
        grid-template-columns: 200px 1fr;
        align-items: start;
    }
}

.tab-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
}

@media (min-width: 768px) {
    .tab-list {
        flex-direction: column;
    }
}

.tab-btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.tab-btn:hover {
    color: var(--ink);
    border-color: var(--gold-dim);
}

.tab-btn[aria-selected="true"] {
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.18), rgba(255, 94, 58, 0.12));
    border-color: var(--gold);
    color: var(--gold);
}

.tab-panel {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    min-height: 280px;
}

.tab-panel[hidden] {
    display: none;
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    padding: 1.15rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    border-top: 3px solid var(--coral);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 2px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 30px;
    height: 30px;
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.review-card p {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    color: var(--muted);
    font-style: italic;
}

.review-card cite {
    font-size: 0.8rem;
    color: var(--gold-dim);
    font-style: normal;
}

/* Perk list */
.perk-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.perk-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}

.feat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border-radius: var(--radius);
}

.feat-icon img {
    width: 36px;
    height: 36px;
}

.perk-row strong {
    display: block;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-soft);
}

.faq-q {
    width: 100%;
    padding: 0.85rem 1rem;
    background: transparent;
    border: none;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.faq-q::after {
    content: '+';
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.is-open .faq-q::after {
    content: '−';
}

.faq-a {
    display: none;
    padding: 0 1rem 0.85rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.faq-item.is-open .faq-a {
    display: block;
}

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

@media (min-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-cell {
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.gallery-cell:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.gallery-cell img {
    max-height: 100%;
}

/* Scroll rail */
.scroll-rail {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-rail::-webkit-scrollbar {
    height: 6px;
}

.scroll-rail::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 999px;
}

.shot-frame {
    flex: 0 0 min(280px, 75vw);
    scroll-snap-align: start;
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
}

.shot-frame img {
    max-height: 100%;
}

/* Game spotlight */
.game-spotlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 2px solid var(--violet);
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 640px) {
    .game-spotlight {
        grid-template-columns: 220px 1fr;
        align-items: center;
    }
}

.game-spotlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(124, 92, 255, 0.2);
    text-decoration: none;
}

.spotlight-thumb {
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.spotlight-thumb img {
    max-height: 100%;
}

.tag-demo {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.55rem;
    background: var(--violet);
    color: #fff;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.game-spotlight h3 {
    margin: 0 0 0.5rem;
    color: var(--gold);
}

.spotlight-cta {
    font-weight: 800;
    color: var(--coral);
    font-size: 0.9rem;
}

/* Marquee */
.mark-marquee {
    overflow: hidden;
    margin-bottom: 1.5rem;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mark-marquee-track {
    display: flex;
    gap: 0.75rem;
    animation: marquee 28s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-chip {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.marquee-chip img {
    width: 36px;
    height: 36px;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

@media (min-width: 700px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

.timeline-item {
    padding: 1rem;
    background: var(--surface);
    border-top: 3px solid var(--coral);
    border-radius: var(--radius);
}

.timeline-item strong {
    display: block;
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

/* Page hero (inner pages) */
.page-hero {
    padding: 1.5rem 0 1rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

/* Game grid */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.game-tile {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.game-tile:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    text-decoration: none;
}

.game-tile-media {
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    position: relative;
}

.badge-demo {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    background: var(--violet);
    color: #fff;
    border-radius: 4px;
    z-index: 1;
}

.game-tile-body {
    padding: 1.15rem;
}

.game-tile-title {
    margin: 0 0 0.45rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.game-tile-desc {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.game-tile-cta {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--coral);
}

/* Legal / prose */
.prose {
    max-width: 72ch;
}

.prose h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

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

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

.legal-seal {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 2px solid var(--gold-dim);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.legal-seal img {
    width: 44px;
    height: 44px;
}

/* Embed player page */
.embed-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 0;
}

.embed-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.embed-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0 1rem;
}

.embed-frame-wrap {
    flex: 1;
    min-height: 480px;
    background: #000;
    border: 2px solid var(--gold-dim);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.embed-frame-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

/* Footer */
.site-footer {
    margin-top: 2rem;
    padding: 2rem 0 1.5rem;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.footer-copy {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 520px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.footer-nav a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--coral);
}

.footer-legal-note {
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.85;
    margin: 0;
    max-width: 80ch;
}

/* Floating play strip */
.play-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    padding: 0.55rem 1rem;
    background: rgba(15, 14, 23, 0.95);
    border-top: 2px solid var(--gold-dim);
    backdrop-filter: blur(10px);
}

.play-strip .store-link img {
    height: 44px;
}
