/* ========================================
   CSS VARIABLES & RESET
   ======================================== */

:root {
    /* Core Palette */
    --gold: #d4af37;
    --gold-light: #e8cc6e;
    --gold-dark: #b8941f;
    --champagne: #c9a962;
    --rose-gold: #b76e79;
    --black-deep: #0d0d0d;
    --black: #111111;
    --charcoal: #1a1a1a;
    --charcoal-light: #222222;
    --charcoal-mid: #2a2a2a;
    --gray-dark: #333333;
    --gray: #555555;
    --gray-light: #888888;
    --gray-lighter: #aaaaaa;
    --white: #f5f0e8;
    --white-pure: #ffffff;
    --cream: #f0e6d0;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Borders */
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --border-gold-strong: 1px solid rgba(212, 175, 55, 0.6);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);

    /* Shadows */
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-strong: 0 0 40px rgba(212, 175, 55, 0.25);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Z-index layers */
    --z-base: 1;
    --z-header: 100;
    --z-modal: 500;
    --z-age-gate: 1000;
    --z-cookie: 900;
    --z-confetti: 800;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black-deep);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

a:hover {
    color: var(--gold-light);
}

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

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

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}


/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black-deep);
    border: 1px solid var(--gold);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: var(--shadow-gold-strong);
    transform: translateY(-1px);
    color: var(--black-deep);
}

.btn--gold:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: var(--border-gold-strong);
}

.btn--outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn--text {
    background: transparent;
    color: var(--gray-light);
    padding: 0.5rem 1rem;
}

.btn--text:hover {
    color: var(--gold);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

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

/* ========================================
   AGE GATE
   ======================================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: var(--z-age-gate);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

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

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.age-gate__modal {
    position: relative;
    background: var(--charcoal);
    border: var(--border-gold);
    max-width: 480px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.age-gate__ornament-top,
.age-gate__ornament-bottom {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-gate__content {
    padding: var(--space-3xl) var(--space-2xl);
}

.age-gate__icon {
    margin-bottom: var(--space-lg);
}

.age-gate__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.age-gate__text {
    font-size: 0.9rem;
    color: var(--gray-lighter);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.age-gate__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate__buttons .btn {
    min-width: 160px;
}

.age-gate__disclaimer {
    margin-top: var(--space-lg);
    font-size: 0.75rem;
    color: var(--gray);
}

.age-gate__disclaimer a {
    color: var(--gray-light);
}


/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: var(--charcoal);
    border-top: var(--border-gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
    min-width: 280px;
}

.cookie-banner__text p {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    line-height: 1.6;
}

.cookie-banner__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.cookie-settings {
    border-top: var(--border-subtle);
}

.cookie-settings__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-lighter);
}

.cookie-toggle input {
    display: none;
}

.cookie-toggle__slider {
    width: 36px;
    height: 20px;
    background: var(--gray-dark);
    border-radius: 10px;
    position: relative;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.cookie-toggle__slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--gray-light);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: var(--gold-dark);
}

.cookie-toggle input:checked + .cookie-toggle__slider::after {
    left: 18px;
    background: var(--gold);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
    opacity: 0.5;
}


/* ========================================
   RESPONSIBLE BANNER
   ======================================== */

.responsible-banner {
    background: var(--black);
    border-bottom: var(--border-subtle);
    padding: var(--space-sm) var(--space-lg);
}

.responsible-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-align: center;
}

.responsible-banner__inner p {
    font-size: 0.75rem;
    color: var(--gray-light);
    letter-spacing: 0.02em;
}


/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-subtle);
    transition: all var(--transition-base);
}

.header--scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    text-decoration: none;
}

.header__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gold);
}

.header__nav {
    display: flex;
    gap: var(--space-2xl);
}

.header__link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-lighter);
    position: relative;
    padding: var(--space-xs) 0;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.header__link:hover,
.header__link.active {
    color: var(--gold);
}

.header__link:hover::after,
.header__link.active::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__coins {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(212, 175, 55, 0.1);
    border: var(--border-gold);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.header__menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: calc(var(--z-header) - 1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    border-bottom: var(--border-gold);
    pointer-events: none;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav__inner {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav__link {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-lighter);
    padding: var(--space-sm) 0;
    border-bottom: var(--border-subtle);
}

.mobile-nav__link:hover {
    color: var(--gold);
}


/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(70px + var(--space-3xl)) var(--space-xl) var(--space-3xl);
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
                var(--black-deep);
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.hero__gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--champagne);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero__gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: var(--rose-gold);
    top: 50%;
    left: 40%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 30px) scale(1.1); }
    66% { transform: translate(30px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.15); }
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(212, 175, 55, 0.1);
    border: var(--border-gold);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
    font-family: var(--font-display);
    line-height: 1.05;
    margin-bottom: var(--space-xl);
}

.hero__title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.hero__title-line--1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    color: var(--white);
    font-style: italic;
    animation-delay: 0.4s;
}

.hero__title-line--2 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
    animation-delay: 0.6s;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gray-lighter);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1s forwards;
}

.hero__stats {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.hero__stat-label {
    font-size: 0.7rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual - Card Stack */
.hero__visual {
    position: relative;
    height: 500px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 0.6s forwards;
}

.hero__card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.hero__card {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: transform 0.6s var(--ease-out);
}

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

.hero__card--1 {
    width: 280px;
    height: 360px;
    top: 10%;
    left: 5%;
    transform: rotate(-6deg);
    z-index: 3;
    border: var(--border-gold);
}

.hero__card--1:hover {
    transform: rotate(-3deg) translateY(-10px);
}

.hero__card--2 {
    width: 240px;
    height: 320px;
    top: 5%;
    right: 5%;
    transform: rotate(4deg);
    z-index: 2;
    border: var(--border-gold);
}

.hero__card--2:hover {
    transform: rotate(1deg) translateY(-10px);
}

.hero__card--3 {
    width: 200px;
    height: 260px;
    bottom: 5%;
    left: 30%;
    transform: rotate(-2deg);
    z-index: 4;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 26, 26, 0.9));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card--3:hover {
    transform: rotate(1deg) translateY(-10px) scale(1.02);
}

.hero__card-golden {
    text-align: center;
    color: var(--gold);
}

.hero__card-golden span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: var(--space-sm);
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero__scroll-indicator span {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header--left {
    text-align: left;
}

.section-header__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: var(--border-gold);
    padding: 0.3rem 1rem;
    margin-bottom: var(--space-lg);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.section-header__desc {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gray-lighter);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header--left .section-header__desc {
    margin: 0;
}


/* ========================================
   GAME SECTION
   ======================================== */

.game-section {
    position: relative;
    padding: var(--space-5xl) var(--space-xl);
    background: var(--black);
    overflow: hidden;
}

.game-section__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.game-section__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* ========================================
   SLOT MACHINE
   ======================================== */

.slot-machine {
    position: relative;
}

.slot-machine__frame {
    background: linear-gradient(180deg, var(--charcoal), var(--black-deep));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(212, 175, 55, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.slot-machine__crown {
    display: flex;
    justify-content: center;
    padding: var(--space-lg) 0 var(--space-sm);
}

.slot-machine__display {
    position: relative;
    padding: 0 var(--space-xl) var(--space-lg);
}

.slot-machine__info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    background: rgba(0, 0, 0, 0.4);
    border: var(--border-gold);
    border-radius: 6px;
}

.slot-machine__balance,
.slot-machine__win-display,
.slot-machine__level {
    text-align: center;
}

.slot-machine__balance-label,
.slot-machine__win-label,
.slot-machine__level-label {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
}

.slot-machine__balance-value,
.slot-machine__win-value,
.slot-machine__level-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.slot-machine__win-value {
    color: var(--white);
}

/* Reels Container */
.slot-machine__reels-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.slot-machine__payline-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slot-machine__payline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: 1px solid var(--gray);
    transition: all var(--transition-fast);
}

.slot-machine__payline-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

.slot-machine__reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 8px;
    position: relative;
}

.slot-machine__reel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.slot-machine__reel-strip {
    display: flex;
    flex-direction: column;
    transition: transform 0.1s linear;
}

.slot-machine__symbol {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    position: relative;
}

.slot-machine__symbol.winning {
    animation: symbolWin 0.5s ease-in-out 3;
}

@keyframes symbolWin {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); filter: brightness(1.3); }
}

.slot-machine__symbol.cascade-out {
    animation: cascadeOut 0.3s var(--ease-out) forwards;
}

@keyframes cascadeOut {
    to { opacity: 0; transform: scale(0.5); }
}

.slot-machine__symbol.cascade-in {
    animation: cascadeIn 0.3s var(--ease-out) forwards;
}

@keyframes cascadeIn {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* Symbol Designs - SVG Based */
.symbol {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.symbol::before {
    content: '';
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.symbol--sm::before {
    width: 36px;
    height: 36px;
}

/* Crown Symbol */
.symbol--crown::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='cg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f0d060'/%3E%3Cstop offset='1' stop-color='%23d4af37'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M8 48L14 18 26 34 32 10 38 34 50 18 56 48Z' fill='url(%23cg)' stroke='%23b8941f' stroke-width='1.5'/%3E%3Ccircle cx='14' cy='18' r='4' fill='%23fff' fill-opacity='0.3'/%3E%3Ccircle cx='32' cy='10' r='5' fill='%23e74c3c' stroke='%23c0392b'/%3E%3Ccircle cx='50' cy='18' r='4' fill='%23fff' fill-opacity='0.3'/%3E%3Crect x='6' y='46' width='52' height='6' rx='2' fill='url(%23cg)' stroke='%23b8941f'/%3E%3Crect x='4' y='52' width='56' height='4' rx='1' fill='%23c9a962'/%3E%3C/svg%3E");
}

/* Lion Symbol */
.symbol--lion::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='lg' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23f0d060'/%3E%3Cstop offset='1' stop-color='%23c9a962'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx='32' cy='28' rx='14' ry='16' fill='url(%23lg)' stroke='%23b8941f' stroke-width='1.5'/%3E%3Cellipse cx='32' cy='22' rx='18' ry='14' fill='none' stroke='%23d4af37' stroke-width='2'/%3E%3Ccircle cx='26' cy='24' r='2.5' fill='%230d0d0d'/%3E%3Ccircle cx='38' cy='24' r='2.5' fill='%230d0d0d'/%3E%3Cpath d='M28 32 Q32 36 36 32' stroke='%230d0d0d' stroke-width='1.5' fill='none'/%3E%3Cellipse cx='32' cy='29' rx='4' ry='2.5' fill='%23e8cc6e'/%3E%3Cpath d='M32 44 Q28 50 24 52 Q28 48 26 44 M32 44 Q36 50 40 52 Q36 48 38 44' stroke='%23d4af37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

/* Big Ben Symbol */
.symbol--bigben::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='22' y='20' width='20' height='36' fill='%231a1a1a' stroke='%23d4af37' stroke-width='1.5'/%3E%3Crect x='26' y='6' width='12' height='14' fill='%231a1a1a' stroke='%23d4af37' stroke-width='1.5'/%3E%3Cpolygon points='32,2 26,6 38,6' fill='%23d4af37'/%3E%3Ccircle cx='32' cy='13' r='4' fill='none' stroke='%23d4af37' stroke-width='1'/%3E%3Cline x1='32' y1='10' x2='32' y2='13' stroke='%23d4af37' stroke-width='1'/%3E%3Cline x1='32' y1='13' x2='34' y2='15' stroke='%23d4af37' stroke-width='1'/%3E%3Crect x='18' y='52' width='28' height='4' fill='%23d4af37'/%3E%3Crect x='24' y='28' width='6' height='10' rx='3' fill='none' stroke='%23c9a962' stroke-width='1'/%3E%3Crect x='34' y='28' width='6' height='10' rx='3' fill='none' stroke='%23c9a962' stroke-width='1'/%3E%3Crect x='24' y='42' width='6' height='8' rx='3' fill='none' stroke='%23c9a962' stroke-width='1'/%3E%3Crect x='34' y='42' width='6' height='8' rx='3' fill='none' stroke='%23c9a962' stroke-width='1'/%3E%3C/svg%3E");
}

/* Rose Symbol */
.symbol--rose::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3CradialGradient id='rg'%3E%3Cstop offset='0' stop-color='%23e74c3c'/%3E%3Cstop offset='1' stop-color='%23c0392b'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='32' cy='28' r='12' fill='url(%23rg)' stroke='%23a93226' stroke-width='1'/%3E%3Ccircle cx='32' cy='28' r='6' fill='%23e74c3c' stroke='%23c0392b'/%3E%3Ccircle cx='32' cy='28' r='2' fill='%23f5b7b1'/%3E%3Cellipse cx='22' cy='24' rx='6' ry='8' fill='%23e74c3c' stroke='%23a93226' transform='rotate(-30 22 24)'/%3E%3Cellipse cx='42' cy='24' rx='6' ry='8' fill='%23e74c3c' stroke='%23a93226' transform='rotate(30 42 24)'/%3E%3Cellipse cx='26' cy='36' rx='6' ry='8' fill='%23e74c3c' stroke='%23a93226' transform='rotate(30 26 36)'/%3E%3Cellipse cx='38' cy='36' rx='6' ry='8' fill='%23e74c3c' stroke='%23a93226' transform='rotate(-30 38 36)'/%3E%3Cline x1='32' y1='40' x2='32' y2='58' stroke='%232d6a2d' stroke-width='2.5'/%3E%3Cpath d='M32 48 Q26 44 22 46' stroke='%232d6a2d' stroke-width='1.5' fill='none'/%3E%3Cpath d='M32 52 Q38 48 42 50' stroke='%232d6a2d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

/* Teacup Symbol */
.symbol--teacup::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M14 24h32v4c0 12-6 20-16 20s-16-8-16-20v-4z' fill='%23f5f0e8' stroke='%23d4af37' stroke-width='1.5'/%3E%3Cpath d='M46 28c6 0 10 4 10 8s-4 8-10 8' stroke='%23d4af37' stroke-width='1.5' fill='none'/%3E%3Crect x='12' y='50' width='36' height='4' rx='2' fill='%23f5f0e8' stroke='%23d4af37' stroke-width='1'/%3E%3Cpath d='M24 14 Q26 8 28 14 M30 10 Q32 4 34 10 M36 14 Q38 8 40 14' stroke='%23d4af37' stroke-width='1' fill='none' opacity='0.6'/%3E%3Cline x1='18' y1='30' x2='42' y2='30' stroke='%23d4af37' stroke-width='0.5' opacity='0.4'/%3E%3Cline x1='20' y1='36' x2='40' y2='36' stroke='%23d4af37' stroke-width='0.5' opacity='0.4'/%3E%3C/svg%3E");
}

/* Guard Symbol */
.symbol--guard::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='22' y='6' width='20' height='18' rx='2' fill='%230d0d0d' stroke='%23e74c3c'/%3E%3Crect x='20' y='6' width='24' height='4' fill='%23e74c3c'/%3E%3Cellipse cx='32' cy='4' rx='3' ry='6' fill='%230d0d0d' stroke='%23e74c3c'/%3E%3Ccircle cx='32' cy='30' r='8' fill='%23f5d5b8' stroke='%23d4a574' stroke-width='1'/%3E%3Ccircle cx='29' cy='29' r='1' fill='%230d0d0d'/%3E%3Ccircle cx='35' cy='29' r='1' fill='%230d0d0d'/%3E%3Crect x='24' y='38' width='16' height='20' fill='%23e74c3c' stroke='%23c0392b'/%3E%3Cline x1='32' y1='38' x2='32' y2='58' stroke='%23d4af37' stroke-width='1'/%3E%3Crect x='28' y='42' width='8' height='2' fill='%23d4af37'/%3E%3Crect x='28' y='46' width='8' height='2' fill='%23d4af37'/%3E%3C/svg%3E");
}

/* Double Decker Symbol */
.symbol--doubledecker::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='8' y='24' width='48' height='16' rx='2' fill='%23e74c3c' stroke='%23c0392b' stroke-width='1'/%3E%3Crect x='8' y='12' width='44' height='12' rx='2' fill='%23e74c3c' stroke='%23c0392b' stroke-width='1'/%3E%3Crect x='12' y='16' width='8' height='6' rx='1' fill='%23aed6f1' stroke='%238bb8d9'/%3E%3Crect x='24' y='16' width='8' height='6' rx='1' fill='%23aed6f1' stroke='%238bb8d9'/%3E%3Crect x='36' y='16' width='8' height='6' rx='1' fill='%23aed6f1' stroke='%238bb8d9'/%3E%3Crect x='12' y='28' width='8' height='8' rx='1' fill='%23aed6f1' stroke='%238bb8d9'/%3E%3Crect x='24' y='28' width='8' height='8' rx='1' fill='%23aed6f1' stroke='%238bb8d9'/%3E%3Crect x='40' y='26' width='12' height='14' rx='1' fill='%23aed6f1' stroke='%238bb8d9'/%3E%3Crect x='6' y='40' width='52' height='4' rx='1' fill='%230d0d0d'/%3E%3Ccircle cx='18' cy='46' r='4' fill='%23333' stroke='%23555' stroke-width='1'/%3E%3Ccircle cx='46' cy='46' r='4' fill='%23333' stroke='%23555' stroke-width='1'/%3E%3Ccircle cx='18' cy='46' r='1.5' fill='%23888'/%3E%3Ccircle cx='46' cy='46' r='1.5' fill='%23888'/%3E%3C/svg%3E");
}

/* Phone Box Symbol */
.symbol--phonebox::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='18' y='8' width='28' height='48' rx='2' fill='%23e74c3c' stroke='%23c0392b' stroke-width='1.5'/%3E%3Crect x='20' y='6' width='24' height='4' rx='1' fill='%23c0392b'/%3E%3Crect x='22' y='14' width='20' height='6' fill='%23f5f0e8' stroke='%23c0392b'/%3E%3Ctext x='32' y='19' text-anchor='middle' fill='%23c0392b' font-size='5' font-weight='700' font-family='serif'>TELEPHONE%3C/text%3E%3Crect x='24' y='24' width='6' height='12' rx='1' fill='%23aed6f1' stroke='%23c0392b'/%3E%3Crect x='34' y='24' width='6' height='12' rx='1' fill='%23aed6f1' stroke='%23c0392b'/%3E%3Crect x='24' y='38' width='6' height='12' rx='1' fill='%23aed6f1' stroke='%23c0392b'/%3E%3Crect x='34' y='38' width='6' height='12' rx='1' fill='%23aed6f1' stroke='%23c0392b'/%3E%3C/svg%3E");
}

/* Shamrock Symbol */
.symbol--shamrock::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='20' r='10' fill='%232ecc71' stroke='%2327ae60' stroke-width='1'/%3E%3Ccircle cx='22' cy='30' r='10' fill='%232ecc71' stroke='%2327ae60' stroke-width='1'/%3E%3Ccircle cx='42' cy='30' r='10' fill='%232ecc71' stroke='%2327ae60' stroke-width='1'/%3E%3Cpath d='M32 34 Q34 46 36 56' stroke='%2327ae60' stroke-width='2.5' fill='none'/%3E%3Ccircle cx='32' cy='22' r='4' fill='%2327ae60'/%3E%3Ccircle cx='24' cy='30' r='4' fill='%2327ae60'/%3E%3Ccircle cx='40' cy='30' r='4' fill='%2327ae60'/%3E%3C/svg%3E");
}

/* Thistle Symbol */
.symbol--thistle::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='20' rx='10' ry='14' fill='%239b59b6' stroke='%238e44ad' stroke-width='1'/%3E%3Cpath d='M26 14 L22 8 M32 10 L32 4 M38 14 L42 8' stroke='%239b59b6' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='22' cy='8' r='2' fill='%239b59b6'/%3E%3Ccircle cx='32' cy='4' r='2' fill='%239b59b6'/%3E%3Ccircle cx='42' cy='8' r='2' fill='%239b59b6'/%3E%3Cpath d='M28 30 Q24 28 20 30 Q24 26 28 24' fill='%232d6a2d' stroke='%23236b23'/%3E%3Cpath d='M36 30 Q40 28 44 30 Q40 26 36 24' fill='%232d6a2d' stroke='%23236b23'/%3E%3Cline x1='32' y1='32' x2='32' y2='56' stroke='%232d6a2d' stroke-width='3'/%3E%3Cpath d='M32 40 Q26 36 22 38' stroke='%232d6a2d' stroke-width='1.5' fill='none'/%3E%3Cpath d='M32 46 Q38 42 42 44' stroke='%232d6a2d' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

/* Golden Ticket Symbol */
.symbol--goldenticket::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='tg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f7dc6f'/%3E%3Cstop offset='0.5' stop-color='%23d4af37'/%3E%3Cstop offset='1' stop-color='%23b8941f'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='6' y='16' width='52' height='32' rx='4' fill='url(%23tg)' stroke='%23b8941f' stroke-width='1.5'/%3E%3Cline x1='18' y1='16' x2='18' y2='48' stroke='%23b8941f' stroke-width='1' stroke-dasharray='3,3'/%3E%3Ccircle cx='18' cy='16' r='4' fill='%230d0d0d'/%3E%3Ccircle cx='18' cy='48' r='4' fill='%230d0d0d'/%3E%3Cpath d='M30 26l4 3 6-6' stroke='%230d0d0d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Ctext x='38' y='42' text-anchor='middle' fill='%230d0d0d' font-size='6' font-weight='700' font-family='serif'%3EWILD%3C/text%3E%3Ccircle cx='10' cy='32' r='1.5' fill='%23b8941f'/%3E%3Ccircle cx='54' cy='32' r='1.5' fill='%23b8941f'/%3E%3C/svg%3E");
}


/* Win Overlay */
.slot-machine__win-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
    animation: winOverlayIn 0.4s var(--ease-out);
}

@keyframes winOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slot-machine__win-overlay-content {
    text-align: center;
    animation: winContentPop 0.5s var(--ease-out);
}

@keyframes winContentPop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.slot-machine__win-overlay-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.slot-machine__win-overlay-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}


/* Controls */
.slot-machine__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    gap: var(--space-lg);
}

.slot-machine__bet-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.slot-machine__bet-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.slot-machine__bet-btn:hover {
    background: rgba(212, 175, 55, 0.15);
}

.slot-machine__bet-display {
    text-align: center;
    min-width: 80px;
}

.slot-machine__bet-label {
    display: block;
    font-size: 0.6rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slot-machine__bet-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

/* Spin Button */
.slot-machine__spin-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-fast);
}

.slot-machine__spin-btn-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.slot-machine__spin-btn-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--black-deep);
    letter-spacing: 0.1em;
    z-index: 2;
}

.slot-machine__spin-btn-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0.5;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0.2; }
}

.slot-machine__spin-btn:hover .slot-machine__spin-btn-inner {
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.slot-machine__spin-btn:active .slot-machine__spin-btn-inner {
    transform: scale(0.95);
}

.slot-machine__spin-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.slot-machine__spin-btn.spinning .slot-machine__spin-btn-ring {
    animation: ringSpinning 0.5s linear infinite;
}

@keyframes ringSpinning {
    to { transform: rotate(360deg); }
}

.slot-machine__extra-controls {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.slot-machine__auto-btn,
.slot-machine__max-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    color: var(--gray-light);
    border: var(--border-subtle);
    border-radius: 4px;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slot-machine__auto-btn:hover,
.slot-machine__max-btn:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.slot-machine__auto-btn.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}


/* Paytable Toggle */
.slot-machine__paytable-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-xl) auto 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    color: var(--gray-light);
    border: var(--border-subtle);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.slot-machine__paytable-toggle:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Culture Fact */
.slot-machine__culture-fact {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: rgba(212, 175, 55, 0.05);
    border: var(--border-gold);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--gray-lighter);
    line-height: 1.6;
}

.slot-machine__culture-fact svg {
    flex-shrink: 0;
    margin-top: 2px;
}


/* Achievements */
.slot-machine__achievements {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.slot-machine__achievement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.slot-machine__achievement.unlocked {
    opacity: 1;
}

.slot-machine__achievement span {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slot-machine__achievement.unlocked span {
    color: var(--gold);
}

.achievement-icon--locked svg circle {
    stroke: var(--gray-dark);
}

.achievement-icon--unlocked svg circle {
    stroke: var(--gold);
    fill: rgba(212, 175, 55, 0.1);
}

.achievement-icon--unlocked svg text,
.achievement-icon--unlocked svg path {
    fill: var(--gold);
    stroke: var(--gold);
}

.achievement-unlock-animation {
    animation: achievementPop 0.6s var(--ease-out);
}

@keyframes achievementPop {
    0% { transform: scale(1); }
    30% { transform: scale(1.3); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}


/* ========================================
   MODAL
   ======================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    background: var(--charcoal);
    border: var(--border-gold);
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: var(--space-2xl);
}

.modal__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.modal__close:hover {
    color: var(--gold);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-xl);
}

/* Paytable */
.paytable__section {
    margin-bottom: var(--space-xl);
}

.paytable__section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--champagne);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: var(--border-subtle);
}

.paytable__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.paytable__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.paytable__item-name {
    display: block;
    font-weight: 500;
    color: var(--white);
    font-size: 0.9rem;
}

.paytable__item-pay {
    font-size: 0.8rem;
    color: var(--gray-lighter);
}

.paytable__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.paytable__features li {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    line-height: 1.6;
    padding-left: var(--space-md);
    position: relative;
}

.paytable__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.paytable__features li strong {
    color: var(--gold);
}


/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
    padding: var(--space-5xl) var(--space-xl);
    background: var(--black-deep);
}

.gallery-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: var(--border-subtle);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}


/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: var(--space-5xl) var(--space-xl);
    background: var(--charcoal);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.about-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section__text {
    margin-bottom: var(--space-3xl);
}

.about-section__text p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gray-lighter);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-section__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.about-feature {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(0, 0, 0, 0.3);
    border: var(--border-subtle);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.about-feature:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-4px);
}

.about-feature__icon {
    margin-bottom: var(--space-md);
}

.about-feature h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    line-height: 1.6;
}


/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
    padding: var(--space-5xl) var(--space-xl);
    background: var(--black);
}

.trust-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    padding: var(--space-2xl);
    background: var(--charcoal);
    border: var(--border-subtle);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.trust-card__icon {
    margin-bottom: var(--space-lg);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--gray-lighter);
    line-height: 1.7;
}

.trust-card a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: var(--space-5xl) var(--space-xl);
    background: var(--charcoal);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.contact-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-section__desc {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gray-lighter);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    padding: var(--space-2xl);
    background: rgba(0, 0, 0, 0.3);
    border: var(--border-gold);
    border-radius: 8px;
}

.contact-form__group {
    margin-bottom: var(--space-lg);
}

.contact-form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-lighter);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.contact-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.contact-form__input::placeholder {
    color: var(--gray);
}

.contact-form__input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray-lighter);
    line-height: 1.5;
}

.contact-form__checkbox input {
    display: none;
}

.contact-form__checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--gray);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all var(--transition-fast);
}

.contact-form__checkbox input:checked + .contact-form__checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-form__checkbox input:checked + .contact-form__checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid var(--black-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form__status {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: 4px;
    font-size: 0.85rem;
    text-align: center;
}

.contact-form__status.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.contact-form__status.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}


/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--black-deep);
    border-top: var(--border-gold);
    padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.footer__links-group h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__links-group a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-lighter);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.footer__links-group a:hover {
    color: var(--gold);
}

.footer__age-badge {
    display: inline-block;
    margin-top: var(--space-sm);
    padding: 0.2rem 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    border: var(--border-gold);
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    margin-bottom: var(--space-xl);
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.footer__disclaimer {
    max-width: 700px;
    margin: var(--space-md) auto 0;
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.7;
}


/* ========================================
   CONFETTI CANVAS
   ======================================== */

.confetti-canvas {
    position: fixed;
    inset: 0;
    z-index: var(--z-confetti);
    pointer-events: none;
}


/* ========================================
   UTILITY & ANIMATIONS
   ======================================== */

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Balance update animation */
.balance-update {
    animation: balanceFlash 0.5s ease-out;
}

@keyframes balanceFlash {
    0% { color: var(--gold-light); transform: scale(1); }
    50% { color: var(--white-pure); transform: scale(1.1); }
    100% { color: var(--gold); transform: scale(1); }
}


/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        height: 350px;
        order: -1;
    }

    .hero__card--1 {
        width: 200px;
        height: 260px;
    }

    .hero__card--2 {
        width: 180px;
        height: 240px;
    }

    .hero__card--3 {
        width: 150px;
        height: 200px;
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .about-section__features {
        grid-template-columns: 1fr;
    }

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

    .slot-machine__controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slot-machine__info-bar {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .slot-machine__reels-container {
        flex-direction: column;
    }

    .slot-machine__payline-indicators,
    .slot-machine__payline-indicators--right {
        flex-direction: row;
        justify-content: center;
    }

    .slot-machine__achievements {
        gap: var(--space-md);
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero__visual {
        height: 280px;
    }

    .hero__card--1 {
        width: 160px;
        height: 200px;
        left: 2%;
    }

    .hero__card--2 {
        width: 140px;
        height: 180px;
        right: 2%;
    }

    .hero__card--3 {
        width: 120px;
        height: 160px;
        left: 35%;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__text {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .slot-machine__display {
        padding: 0 var(--space-md) var(--space-md);
    }

    .slot-machine__controls {
        padding: var(--space-md);
    }

    .symbol::before {
        width: 38px;
        height: 38px;
    }
}

/* ========================================
   LEGAL PAGES SHARED STYLES
   ======================================== */

.legal-page {
    padding: calc(70px + var(--space-4xl)) var(--space-xl) var(--space-4xl);
    min-height: 100vh;
    background: var(--black-deep);
}

.legal-page__inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.legal-page .legal-date {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: var(--space-3xl);
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--champagne);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal-page h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-page p {
    font-size: 0.9rem;
    color: var(--gray-lighter);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-page ul,
.legal-page ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-page li {
    font-size: 0.9rem;
    color: var(--gray-lighter);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.legal-page ol li {
    list-style: decimal;
}

.legal-page a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page strong {
    color: var(--white);
}
