:root {
    --bg: #0c0b10;
    --bg-2: #151019;
    --ink: #fff7df;
    --muted: #d5c59d;
    --faint: rgba(255, 247, 223, 0.68);
    --gold: #f5bd4f;
    --gold-2: #ffe39a;
    --ruby: #96283f;
    --ruby-2: #c83c4e;
    --teal: #31c8c2;
    --ice: #80e8ff;
    --wood: #3a1e16;
    --paper: #f2e2c4;
    --paper-ink: #241813;
    --line: rgba(255, 227, 154, 0.22);
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
    --radius: 8px;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(135deg, rgba(150, 40, 63, 0.18), transparent 34%),
        radial-gradient(circle at 85% 8%, rgba(49, 200, 194, 0.16), transparent 28%),
        linear-gradient(180deg, #0c0b10 0%, #171018 48%, #0d1416 100%);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

body.age-locked {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-inner {
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto;
}

.top-notice {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    justify-content: center;
    gap: 16px;
    min-height: 34px;
    padding: 7px 14px;
    color: #1b0e08;
    background: linear-gradient(90deg, #ffe39a, #f4b340 38%, #ffd575 70%, #b9f7ff);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.top-notice span {
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 34px;
    z-index: 50;
    background: rgba(12, 11, 16, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    position: relative;
    width: min(var(--content), calc(100% - 32px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.brand img,
.footer-brand img {
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(255, 227, 154, 0.36), 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand strong {
    display: block;
    font-size: 1.22rem;
    line-height: 1;
    color: var(--gold-2);
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--faint);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
    color: var(--ink);
    border-color: rgba(255, 227, 154, 0.34);
    background: rgba(255, 227, 154, 0.08);
    outline: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 227, 154, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--gold-2);
    border-radius: 99px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.15;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.btn-primary {
    color: #1d1008;
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    box-shadow: 0 12px 32px rgba(245, 189, 79, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 16px 42px rgba(245, 189, 79, 0.34);
}

.btn-ghost {
    color: var(--ink);
    border-color: rgba(255, 227, 154, 0.32);
    background: rgba(255, 247, 223, 0.06);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold-2);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 78svh;
    isolation: isolate;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero picture,
.hero picture img,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 11, 16, 0.86) 0%, rgba(12, 11, 16, 0.62) 37%, rgba(12, 11, 16, 0.1) 76%),
        linear-gradient(180deg, rgba(12, 11, 16, 0.12), rgba(12, 11, 16, 0.86));
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 110px) 0;
}

.hero h1,
.game-hero h1,
.legal-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(3.2rem, 8vw, 7.4rem);
    line-height: 0.88;
    letter-spacing: 0;
    text-shadow: 0 16px 46px rgba(0, 0, 0, 0.54);
}

.hero__lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: #f8ebc7;
    font-size: clamp(1.05rem, 2.1vw, 1.32rem);
}

.hero__actions,
.age-gate__actions,
.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero__actions {
    margin-top: 28px;
}

.compliance-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 720px;
    margin-top: 26px;
}

.compliance-strip span {
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 227, 154, 0.34);
    border-radius: 999px;
    background: rgba(12, 11, 16, 0.58);
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.intro-band {
    padding: 34px 0;
    border-block: 1px solid rgba(255, 227, 154, 0.18);
    background: linear-gradient(90deg, rgba(58, 30, 22, 0.72), rgba(10, 47, 51, 0.58));
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: end;
}

.intro-grid h2,
.section-heading h2,
.info-columns h2,
.side-panel h2,
.rule-panel h2,
.legal-content h2,
.site-footer h2 {
    margin: 0;
    color: var(--gold-2);
    line-height: 1.08;
    letter-spacing: 0;
}

.intro-grid h2,
.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro-grid p:last-child {
    margin: 0;
    color: #f1dec0;
}

.games-showcase,
.info-columns {
    padding: clamp(54px, 7vw, 92px) 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.game-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.game-card {
    overflow: hidden;
    border: 1px solid rgba(255, 227, 154, 0.22);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 247, 223, 0.08), rgba(255, 247, 223, 0.03));
    box-shadow: var(--shadow);
}

.game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 227, 154, 0.18);
}

.game-card__body {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.game-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.28rem;
}

.game-card p,
.info-columns p,
.site-footer p,
.side-panel p,
.rule-panel li {
    color: var(--muted);
}

.game-card p {
    margin: 0;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-columns > div {
    padding: 22px;
    border-top: 3px solid var(--gold);
    background: rgba(255, 247, 223, 0.06);
}

.info-columns h2 {
    font-size: 1.3rem;
}

.site-footer {
    padding: 46px 0 18px;
    border-top: 1px solid rgba(255, 227, 154, 0.18);
    background: #08070a;
}

.footer-grid {
    width: min(var(--content), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 28px;
}

.site-footer .footer-brand {
    display: inline-flex;
    margin: -18px 0 12px;
}

.footer-brand span {
    color: var(--gold-2);
    font-size: 1.22rem;
    font-weight: 900;
}

.site-footer h2 {
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer a {
    display: block;
    margin: 7px 0;
    color: #f3deb0;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--ice);
    outline: none;
}

.footer-bottom {
    width: min(var(--content), calc(100% - 32px));
    margin: 26px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 227, 154, 0.14);
    color: rgba(255, 247, 223, 0.64);
    font-size: 0.85rem;
}

.game-hero,
.legal-hero {
    padding: clamp(54px, 8vw, 96px) 0 42px;
    background:
        linear-gradient(90deg, rgba(150, 40, 63, 0.28), transparent),
        linear-gradient(180deg, rgba(255, 227, 154, 0.09), transparent);
    border-bottom: 1px solid rgba(255, 227, 154, 0.16);
}

.game-hero--aurora {
    background:
        linear-gradient(90deg, rgba(49, 200, 194, 0.22), transparent),
        linear-gradient(180deg, rgba(128, 232, 255, 0.12), transparent);
}

.game-hero--cannon {
    background:
        linear-gradient(90deg, rgba(200, 60, 78, 0.26), transparent),
        linear-gradient(180deg, rgba(245, 189, 79, 0.11), transparent);
}

.game-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
    gap: 28px;
    align-items: end;
}

.game-hero h1,
.legal-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.game-hero p,
.legal-hero p {
    max-width: 760px;
    color: #f4dfb8;
    font-size: 1.08rem;
}

.rule-panel,
.side-panel {
    border: 1px solid rgba(255, 227, 154, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 247, 223, 0.06);
    box-shadow: var(--shadow);
}

.rule-panel {
    padding: 20px;
}

.rule-panel ul {
    padding-left: 18px;
    margin: 14px 0 0;
}

.game-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 20px;
    align-items: start;
    padding: clamp(34px, 5vw, 64px) 0 clamp(56px, 7vw, 90px);
}

.side-panel {
    position: sticky;
    top: 132px;
    padding: 22px;
}

.side-panel h2 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.fine-print {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 227, 154, 0.16);
    font-size: 0.92rem;
}

.slot-game {
    --accent: var(--gold);
    --accent-soft: rgba(245, 189, 79, 0.2);
    position: relative;
}

.aurora-page .slot-game {
    --accent: var(--ice);
    --accent-soft: rgba(128, 232, 255, 0.22);
}

.cannon-page .slot-game {
    --accent: #ff8a4c;
    --accent-soft: rgba(255, 138, 76, 0.22);
}

.slot-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 227, 154, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 247, 223, 0.08), rgba(255, 247, 223, 0.02)),
        linear-gradient(135deg, rgba(58, 30, 22, 0.72), rgba(7, 28, 35, 0.9));
    box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.slot-shell::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 227, 154, 0.08), transparent);
    transform: translateX(-100%);
    animation: shellShine 5.5s ease-in-out infinite;
}

.slot-top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
    gap: 18px;
    align-items: start;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 227, 154, 0.18);
    background: rgba(8, 7, 10, 0.46);
}

.slot-top h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.05;
}

.slot-top p {
    margin: 5px 0 0;
    color: var(--muted);
}

.feature-badge {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
    border-radius: 8px;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.slot-machine {
    position: relative;
    padding: clamp(14px, 2vw, 22px);
}

.slot-board-wrap {
    position: relative;
    padding: clamp(10px, 1.6vw, 16px);
    border: 1px solid rgba(255, 227, 154, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.22)),
        radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 54%);
}

.slot-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(7px, 1.4vw, 12px);
    aspect-ratio: 5 / 3;
    min-height: 240px;
}

.slot-reel {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: clamp(7px, 1.4vw, 12px);
    min-width: 0;
}

.slot-cell {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 0;
    border: 1px solid rgba(255, 227, 154, 0.24);
    border-radius: 8px;
    background: rgba(5, 10, 16, 0.72);
    box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.38);
}

.slot-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 38%, rgba(255, 255, 255, 0.06));
    mix-blend-mode: screen;
}

.symbol-icon {
    position: absolute;
    inset: 0;
    background-image: var(--sprite);
    background-repeat: no-repeat;
    background-size: 300% 300%;
    background-position: var(--x) var(--y);
    transform: scale(0.98);
    transition: transform 220ms ease, filter 220ms ease;
}

.slot-reel.spinning .symbol-icon {
    animation: reelFlicker 90ms linear infinite;
    filter: blur(1px) saturate(1.28);
}

.slot-reel.settle .slot-cell {
    animation: settleBounce 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.slot-cell.win {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 42%, transparent), 0 0 28px var(--accent-soft), inset 0 0 26px rgba(255, 255, 255, 0.1);
}

.slot-cell.win .symbol-icon {
    animation: winPulse 760ms ease-in-out infinite alternate;
    filter: saturate(1.28) brightness(1.12);
}

.slot-cell.scatter {
    border-color: var(--gold-2);
    box-shadow: 0 0 24px rgba(255, 227, 154, 0.34), inset 0 0 30px rgba(255, 227, 154, 0.14);
}

.payline-svg {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

.payline-svg polyline {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 9px var(--accent));
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: drawLine 720ms ease forwards;
}

.slot-board.big-win .slot-cell.win {
    animation: boardWinLift 850ms ease-in-out;
}

.slot-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.stat-box {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(255, 227, 154, 0.18);
    border-radius: 8px;
    background: rgba(255, 247, 223, 0.06);
}

.stat-box span {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-box strong {
    display: block;
    margin-top: 3px;
    color: var(--ink);
    font-size: clamp(1rem, 2vw, 1.25rem);
    white-space: nowrap;
}

.slot-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: end;
    margin-top: 16px;
}

.bet-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bet-group-label {
    flex-basis: 100%;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bet-button,
.icon-button {
    min-height: 42px;
    border: 1px solid rgba(255, 227, 154, 0.22);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 247, 223, 0.06);
    cursor: pointer;
    font-weight: 800;
}

.bet-button {
    padding: 8px 12px;
}

.bet-button.is-active,
.bet-button:hover,
.bet-button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
    border-color: var(--accent);
    background: var(--accent-soft);
    outline: none;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.spin-button {
    min-width: 154px;
}

.refill-button {
    min-width: 88px;
}

.spin-button[disabled] {
    cursor: wait;
    opacity: 0.7;
}

.icon-button {
    width: 44px;
    padding: 0;
}

.slot-status {
    min-height: 52px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 227, 154, 0.18);
    border-radius: 8px;
    color: #f6e7c7;
    background: rgba(0, 0, 0, 0.22);
}

.slot-status strong {
    color: var(--accent);
}

.symbol-paytable {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.pay-symbol {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 227, 154, 0.14);
    border-radius: 8px;
    background: rgba(255, 247, 223, 0.04);
}

.pay-symbol .mini-symbol {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background-image: var(--sprite);
    background-repeat: no-repeat;
    background-size: 300% 300%;
    background-position: var(--x) var(--y);
}

.pay-symbol span {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.2;
    text-overflow: ellipsis;
}

.coin-particle {
    position: absolute;
    z-index: 30;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, #fff7c9, #f5bd4f 45%, #9b5c17 100%);
    box-shadow: 0 0 12px rgba(245, 189, 79, 0.8);
    animation: coinBurst 980ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.impact-flash {
    position: absolute;
    z-index: 24;
    left: var(--x);
    top: var(--y);
    width: 88px;
    height: 88px;
    pointer-events: none;
    border-radius: 50%;
    border: 2px solid rgba(255, 227, 154, 0.72);
    background: radial-gradient(circle, rgba(255, 227, 154, 0.7), rgba(255, 138, 76, 0.22) 44%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.3);
    animation: impactPop 720ms ease-out forwards;
}

.legal-page {
    background: linear-gradient(180deg, rgba(242, 226, 196, 0.03), rgba(242, 226, 196, 0.08));
}

.legal-content {
    max-width: 900px;
    padding: 42px 0 72px;
    color: #f0dfbd;
}

.legal-content p,
.legal-content li {
    color: #e5d0ac;
}

.legal-content h2 {
    margin-top: 34px;
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.legal-content a {
    color: var(--ice);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-content ul {
    padding-left: 20px;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(8, 7, 10, 0.82);
    backdrop-filter: blur(10px);
}

.age-gate__panel {
    width: min(520px, 100%);
    padding: 28px;
    border: 1px solid rgba(255, 227, 154, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 247, 223, 0.09), rgba(255, 247, 223, 0.04)),
        #151019;
    box-shadow: var(--shadow);
    text-align: center;
}

.age-gate__panel img {
    margin: 0 auto 14px;
    border-radius: 8px;
}

.age-gate__panel h2 {
    margin: 0;
    color: var(--gold-2);
    font-size: 2rem;
}

.age-gate__panel p {
    color: var(--muted);
}

.age-gate__actions {
    justify-content: center;
    margin-top: 18px;
}

.cookie-banner {
    position: fixed;
    z-index: 90;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px;
    border: 1px solid rgba(255, 227, 154, 0.28);
    border-radius: 8px;
    background: rgba(14, 13, 18, 0.96);
    box-shadow: var(--shadow);
}

.cookie-banner p {
    margin: 4px 0 0;
    color: var(--muted);
}

@keyframes shellShine {
    0%, 42% { transform: translateX(-100%); }
    58%, 100% { transform: translateX(100%); }
}

@keyframes reelFlicker {
    from { transform: translateY(-7px) scale(1.02); opacity: 0.78; }
    to { transform: translateY(7px) scale(1.02); opacity: 1; }
}

@keyframes settleBounce {
    0% { transform: translateY(-10px); }
    55% { transform: translateY(4px); }
    100% { transform: translateY(0); }
}

@keyframes winPulse {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

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

@keyframes coinBurst {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.45) rotate(0deg);
    }
    16% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.12) rotate(460deg);
    }
}

@keyframes impactPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.25);
    }
    34% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.7);
    }
}

@media (max-width: 980px) {
    .game-card-grid,
    .info-columns,
    .footer-grid,
    .game-layout,
    .game-hero__grid,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .top-notice {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% - 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(255, 227, 154, 0.22);
        border-radius: 8px;
        background: rgba(12, 11, 16, 0.98);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        border-radius: 8px;
    }

    .hero {
        min-height: 72svh;
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(12, 11, 16, 0.9), rgba(12, 11, 16, 0.46)),
            linear-gradient(180deg, rgba(12, 11, 16, 0.2), rgba(12, 11, 16, 0.9));
    }

    .slot-board {
        min-height: 180px;
    }

    .slot-stats,
    .symbol-paytable {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slot-controls {
        grid-template-columns: 1fr;
    }

    .action-row {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .top-notice {
        gap: 6px;
        min-height: 24px;
        padding: 5px 6px;
        font-size: 0.58rem;
    }

    .site-header {
        top: 24px;
    }

    .nav-wrap {
        min-height: 68px;
    }

    .brand small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 4.6rem);
    }

    .hero__content {
        padding: 46px 0;
    }

    .game-hero h1,
    .legal-hero h1 {
        font-size: clamp(2.3rem, 13vw, 3.6rem);
    }

    .slot-top {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-badge {
        width: 100%;
    }

    .slot-machine {
        padding: 10px;
    }

    .slot-board {
        gap: 5px;
        min-height: 142px;
    }

    .slot-reel {
        gap: 5px;
    }

    .slot-board-wrap {
        padding: 7px;
    }

    .slot-stats,
    .symbol-paytable {
        grid-template-columns: 1fr;
    }

    .spin-button {
        width: 100%;
        min-width: 0;
    }

    .action-row {
        display: grid;
        grid-template-columns: 1fr auto 44px;
        width: 100%;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions .btn {
        flex: 1;
    }
}
