/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Primary Palette */
    --primary: #37474f;
    --primary-dark: #263238;
    --primary-darker: #1a2327;
    --primary-light: #546e7a;
    --primary-lighter: #78909c;

    /* Secondary & Backgrounds */
    --secondary: #fafafa;
    --secondary-dark: #f0f0f0;
    --secondary-darker: #e0e0e0;
    --bg-base: #eceff1;
    --bg-paper: #ffffff;

    /* Accent */
    --accent: #ff7043;
    --accent-dark: #e64a19;
    --accent-light: #ff8a65;
    --accent-lighter: #ffab91;
    --accent-glow: rgba(255, 112, 67, 0.35);

    /* Vegas Lights */
    --vegas-gold: #ffd54f;
    --vegas-red: #ef5350;
    --vegas-green: #66bb6a;
    --vegas-blue: #42a5f5;
    --vegas-pink: #ec407a;
    --vegas-purple: #ab47bc;

    /* Shadows (Material Design dp) */
    --shadow-2dp: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-4dp: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
    --shadow-8dp: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
    --shadow-16dp: 0 14px 28px rgba(0,0,0,0.20), 0 10px 10px rgba(0,0,0,0.15);
    --shadow-24dp: 0 19px 38px rgba(0,0,0,0.25), 0 15px 12px rgba(0,0,0,0.18);

    /* Paper Stack Offsets */
    --paper-offset: 4px;
    --paper-offset-lg: 6px;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Roboto Slab', 'Georgia', serif;
    --font-body: 'Roboto', '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;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-round: 50%;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index layers */
    --z-base: 1;
    --z-card: 10;
    --z-sticky: 100;
    --z-nav: 500;
    --z-overlay: 900;
    --z-modal: 1000;
    --z-cookie: 1100;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--bg-base);
    overflow-x: hidden;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

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

a:hover {
    color: var(--accent-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 0.75rem;
    color: var(--primary-light);
}

strong {
    font-weight: 700;
    color: var(--primary-dark);
}

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

/* ========================================
   CONTAINER
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ========================================
   AGE GATE OVERLAY
   ======================================== */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 39, 0.95);
    backdrop-filter: blur(12px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: fadeIn 0.5s ease;
}

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

.age-gate-card {
    max-width: 520px;
    width: 100%;
}

.age-gate-paper-stack {
    position: relative;
}

.age-gate-paper-stack .paper-layer {
    border-radius: var(--radius-lg);
}

.age-gate-paper-stack .paper-layer-3 {
    position: absolute;
    top: var(--paper-offset-lg);
    left: calc(var(--paper-offset-lg) * -1);
    right: calc(var(--paper-offset-lg) * -1);
    bottom: calc(var(--paper-offset-lg) * -1);
    background: var(--secondary-darker);
    box-shadow: var(--shadow-8dp);
    transform: rotate(-2deg);
}

.age-gate-paper-stack .paper-layer-2 {
    position: absolute;
    top: var(--paper-offset);
    left: calc(var(--paper-offset) * -0.5);
    right: calc(var(--paper-offset) * -0.5);
    bottom: calc(var(--paper-offset) * -1);
    background: var(--secondary-dark);
    box-shadow: var(--shadow-4dp);
    transform: rotate(1deg);
}

.age-gate-paper-stack .paper-layer-1 {
    position: relative;
    background: var(--bg-paper);
    box-shadow: var(--shadow-16dp);
    padding: var(--space-3xl) var(--space-2xl);
    z-index: 3;
}

.age-gate-content {
    text-align: center;
}

.age-icon-wrapper {
    margin-bottom: var(--space-xl);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--accent);
    color: white;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-8dp), 0 0 40px var(--accent-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--shadow-8dp), 0 0 20px var(--accent-glow); }
    50% { box-shadow: var(--shadow-16dp), 0 0 50px var(--accent-glow); }
}

.age-gate-content h2 {
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.age-gate-content p {
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0 var(--space-lg);
}

.age-disclaimer {
    font-size: 0.8rem;
    color: var(--primary-lighter);
    margin-bottom: 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-paper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-4dp);
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-8dp);
    transform: translateY(-2px);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-2dp);
}

.btn-secondary {
    background: var(--bg-paper);
    color: var(--primary);
    box-shadow: var(--shadow-2dp);
    border: 2px solid var(--secondary-darker);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    box-shadow: var(--shadow-4dp);
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-light);
    border: 1px solid var(--secondary-darker);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-ghost:hover {
    background: var(--secondary-dark);
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: var(--bg-paper);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-top: 3px solid var(--accent);
    animation: slideUp 0.5s var(--transition-slow);
}

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

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

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

.cookie-icon {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text p {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-settings {
    padding: var(--space-md) var(--space-xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--secondary-darker);
}

.cookie-setting-row {
    padding: var(--space-sm) 0;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-setting-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

#cookie-save-settings {
    margin-top: var(--space-md);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    background: var(--primary-dark);
    box-shadow: var(--shadow-8dp);
}

.header-vegas-lights {
    height: 4px;
    background: var(--primary-darker);
    overflow: hidden;
    position: relative;
}

.light-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 var(--space-sm);
}

.bulb {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-round);
    animation: bulb-chase 2s ease-in-out infinite;
}

.bulb-1, .bulb-6, .bulb-11, .bulb-16 { background: var(--vegas-red); animation-delay: 0s; }
.bulb-2, .bulb-7, .bulb-12, .bulb-17 { background: var(--vegas-gold); animation-delay: 0.15s; }
.bulb-3, .bulb-8, .bulb-13, .bulb-18 { background: var(--vegas-green); animation-delay: 0.3s; }
.bulb-4, .bulb-9, .bulb-14, .bulb-19 { background: var(--vegas-blue); animation-delay: 0.45s; }
.bulb-5, .bulb-10, .bulb-15, .bulb-20 { background: var(--vegas-pink); animation-delay: 0.6s; }

@keyframes bulb-chase {
    0%, 100% { opacity: 0.3; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 8px currentColor; }
}

.main-nav {
    padding: 0 var(--space-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
}

.logo-link {
    text-decoration: none;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-4dp);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-item {
    padding: 0.5rem 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-item:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-item.active {
    color: white;
    background: rgba(255,255,255,0.15);
}

.nav-item.nav-accent {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-2dp);
}

.nav-item.nav-accent:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-4dp);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(64px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    z-index: 0;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 112, 67, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(66, 165, 245, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 213, 79, 0.06) 0%, transparent 50%);
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.01) 50px,
            rgba(255,255,255,0.01) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.01) 50px,
            rgba(255,255,255,0.01) 51px
        );
}

.hero-vegas-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-vegas-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 15% 15%, var(--vegas-gold) 0%, transparent 0.5%),
        radial-gradient(circle at 85% 25%, var(--vegas-red) 0%, transparent 0.3%),
        radial-gradient(circle at 45% 85%, var(--vegas-blue) 0%, transparent 0.4%),
        radial-gradient(circle at 75% 65%, var(--vegas-pink) 0%, transparent 0.3%),
        radial-gradient(circle at 25% 55%, var(--vegas-green) 0%, transparent 0.4%),
        radial-gradient(circle at 55% 35%, var(--vegas-purple) 0%, transparent 0.3%),
        radial-gradient(circle at 35% 75%, var(--vegas-gold) 0%, transparent 0.3%),
        radial-gradient(circle at 90% 80%, var(--vegas-red) 0%, transparent 0.4%);
    animation: twinkle-stars 6s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes twinkle-stars {
    0% { transform: translate(0, 0); opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { transform: translate(-2%, -1%); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.hero-paper-stack {
    position: relative;
}

.hero-paper {
    border-radius: var(--radius-xl);
}

.hero-paper-back {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    transform: rotate(-1.5deg) translateY(8px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-8dp);
}

.hero-paper-mid {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: rotate(0.8deg) translateY(4px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-4dp);
}

.hero-paper-front {
    position: relative;
    background: var(--bg-paper);
    box-shadow: var(--shadow-24dp);
    z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.hero-inner {
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--secondary-dark);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-2dp);
    animation: fadeInDown 0.6s ease 0.2s both;
}

.hero-badge i {
    color: var(--accent);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
    animation: fadeInDown 0.6s ease 0.4s both;
}

.accent-text {
    color: var(--accent);
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-light);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    animation: fadeInDown 0.6s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    animation: fadeInDown 0.6s ease 0.8s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--secondary-darker);
    animation: fadeInDown 0.6s ease 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--primary-lighter);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--secondary-darker);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce-down 2s ease-in-out infinite;
    box-shadow: var(--shadow-4dp);
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--bg-paper);
    box-shadow: var(--shadow-4dp);
    position: relative;
    z-index: var(--z-base);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: var(--space-lg) 0;
    gap: var(--space-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-paper-tab {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    box-shadow: var(--shadow-2dp);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-paper-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 1px;
    background: var(--accent);
}

.tab-icon {
    font-size: 0.85rem;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--primary-light);
}

/* ========================================
   CASINOS SECTION
   ======================================== */
.casinos-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-base);
    position: relative;
}

.casinos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-paper), var(--bg-base));
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-paper {
    display: flex;
    background: var(--bg-paper);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2dp);
    overflow: hidden;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.filter-btn:hover {
    color: var(--primary);
    background: var(--secondary-dark);
}

.filter-btn.active {
    color: white;
    background: var(--accent);
}

.sort-control {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-paper);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2dp);
}

.sort-control label {
    color: var(--primary-lighter);
}

.sort-select {
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--primary);
    cursor: pointer;
    outline: none;
    padding: 0.4rem;
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: var(--space-2xl);
}

/* Casino Card */
.casino-card {
    opacity: 0;
    transform: translateY(30px);
    animation: card-appear 0.5s ease forwards;
}

.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.2s; }
.casino-card:nth-child(3) { animation-delay: 0.3s; }
.casino-card:nth-child(4) { animation-delay: 0.4s; }
.casino-card:nth-child(5) { animation-delay: 0.5s; }
.casino-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes card-appear {
    to { opacity: 1; transform: translateY(0); }
}

.casino-card.hidden {
    display: none;
}

.card-elevation-stack {
    position: relative;
}

.card-shadow-layer {
    position: absolute;
    inset: 0;
    background: var(--secondary-darker);
    border-radius: var(--radius-lg);
    transform: translate(var(--paper-offset), var(--paper-offset));
    box-shadow: var(--shadow-4dp);
}

.card-main {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-8dp);
    overflow: hidden;
    transition: all var(--transition-slow);
    z-index: 2;
}

.casino-card:hover .card-main {
    box-shadow: var(--shadow-16dp);
    transform: translateY(-4px);
}

.casino-card:hover .card-shadow-layer {
    transform: translate(calc(var(--paper-offset) + 2px), calc(var(--paper-offset) + 4px));
}

.card-header {
    position: relative;
    padding: 0;
}

.card-rank {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--bg-paper);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.9rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-4dp);
    z-index: 3;
}

.card-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    height: 140px;
    color: white;
    position: relative;
    overflow: hidden;
}

.card-logo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.03) 10px,
            rgba(255,255,255,0.03) 20px
        );
}

.card-logo-placeholder i {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.card-logo-placeholder span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.card-rating-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 3;
}

.rating-circle {
    position: relative;
    width: 52px;
    height: 52px;
    background: var(--bg-paper);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-4dp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-chart {
    position: absolute;
    inset: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
}

.circle-bg {
    fill: none;
    stroke: var(--secondary-darker);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: var(--accent);
    stroke-width: 3;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dasharray 1s ease;
}

.rating-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-dark);
    position: relative;
    z-index: 2;
}

.card-body {
    padding: var(--space-lg);
}

.card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.tag-license {
    background: rgba(255, 112, 67, 0.1);
    color: var(--accent-dark);
}

.tag-country {
    background: rgba(55, 71, 79, 0.1);
    color: var(--primary);
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

.feature i {
    color: var(--vegas-green);
    font-size: 0.75rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-top: 2px solid var(--secondary-dark);
    background: var(--secondary);
}

.card-stars {
    display: flex;
    gap: 2px;
}

.card-stars i {
    font-size: 0.85rem;
    color: var(--vegas-gold);
}

.card-stars .far {
    color: var(--secondary-darker);
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2dp);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-visit:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-4dp);
    transform: translateY(-1px);
    color: white;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-paper);
}

.table-paper-wrapper {
    position: relative;
}

.table-paper-stack {
    position: relative;
}

.table-paper-back {
    position: absolute;
    inset: 0;
    background: var(--secondary-darker);
    border-radius: var(--radius-lg);
    transform: translate(var(--paper-offset-lg), var(--paper-offset-lg)) rotate(0.3deg);
    box-shadow: var(--shadow-4dp);
}

.table-paper-front {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-8dp);
    overflow: hidden;
    z-index: 2;
    border: 1px solid var(--secondary-darker);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table thead {
    background: var(--primary-dark);
    color: white;
}

.comparison-table th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    font-family: var(--font-body);
    color: white;
}

.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--secondary-dark);
    vertical-align: middle;
}

.comparison-table tbody tr {
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 112, 67, 0.04);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.td-rank {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--accent);
    text-align: center;
    width: 50px;
}

.td-name {
    font-weight: 700;
    white-space: nowrap;
}

.td-name i {
    margin-right: var(--space-sm);
}

.rating-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
}

.rating-high {
    background: rgba(102, 187, 106, 0.15);
    color: #2e7d32;
}

.rating-mid {
    background: rgba(255, 213, 79, 0.2);
    color: #f57f17;
}

.rating-low {
    background: rgba(255, 112, 67, 0.15);
    color: var(--accent-dark);
}

.td-license {
    font-size: 0.82rem;
    white-space: nowrap;
}

.td-license i {
    color: var(--accent);
    margin-right: 4px;
}

.td-type {
    font-size: 0.85rem;
    white-space: nowrap;
}

.td-features {
    font-size: 0.82rem;
    color: var(--primary-light);
    max-width: 200px;
}

.table-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 14px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.table-btn:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateX(2px);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-base);
    position: relative;
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.step-paper-layers {
    position: relative;
    height: 100%;
}

.step-layer-3 {
    position: absolute;
    inset: 0;
    background: var(--secondary-darker);
    border-radius: var(--radius-lg);
    transform: translate(5px, 5px) rotate(-1deg);
    box-shadow: var(--shadow-2dp);
}

.step-layer-2 {
    position: absolute;
    inset: 0;
    background: var(--secondary-dark);
    border-radius: var(--radius-lg);
    transform: translate(2px, 3px) rotate(0.5deg);
    box-shadow: var(--shadow-2dp);
}

.step-layer-1 {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-8dp);
    padding: var(--space-2xl);
    text-align: center;
    z-index: 3;
    height: 100%;
    transition: all var(--transition-slow);
}

.step-card:hover .step-layer-1 {
    transform: translateY(-4px);
    box-shadow: var(--shadow-16dp);
}

.step-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3rem;
    color: var(--secondary-darker);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: var(--accent);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: var(--shadow-4dp), 0 0 20px var(--accent-glow);
}

.step-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-darker);
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 40px;
}

.connector-line {
    display: none;
}

/* ========================================
   GAME SECTION - SPIN THE WHEEL
   ======================================== */
.game-section {
    padding: var(--space-4xl) 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.game-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 112, 67, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 213, 79, 0.08) 0%, transparent 50%);
}

.game-section .section-header {
    position: relative;
    z-index: 2;
}

.game-section .section-title {
    color: white;
}

.game-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.game-wrapper {
    position: relative;
    z-index: 2;
}

.game-paper-stack {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.game-paper-back {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    transform: translate(6px, 6px) rotate(0.5deg);
    box-shadow: var(--shadow-8dp);
}

.game-paper-front {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-24dp);
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    z-index: 2;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.wheel-frame {
    position: relative;
    width: 340px;
    height: 340px;
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--accent);
    font-size: 2.5rem;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.wheel-outer-ring {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-round);
    background: var(--primary-dark);
    box-shadow: var(--shadow-16dp), inset 0 0 20px rgba(0,0,0,0.3);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-lights-ring {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-round);
    z-index: 3;
    pointer-events: none;
}

.w-light {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
    box-shadow: 0 0 6px currentColor;
}

.w-l-1 { top: 4px; left: 50%; transform: translateX(-50%); background: var(--vegas-red); color: var(--vegas-red); }
.w-l-2 { top: 12px; left: 73%; background: var(--vegas-gold); color: var(--vegas-gold); }
.w-l-3 { top: 35px; left: 89%; background: var(--vegas-green); color: var(--vegas-green); }
.w-l-4 { top: 50%; right: 4px; transform: translateY(-50%); background: var(--vegas-blue); color: var(--vegas-blue); }
.w-l-5 { bottom: 35px; right: 12px; background: var(--vegas-pink); color: var(--vegas-pink); }
.w-l-6 { bottom: 12px; right: 35px; background: var(--vegas-red); color: var(--vegas-red); }
.w-l-7 { bottom: 4px; left: 50%; transform: translateX(-50%); background: var(--vegas-gold); color: var(--vegas-gold); }
.w-l-8 { bottom: 12px; left: 35px; background: var(--vegas-green); color: var(--vegas-green); }
.w-l-9 { bottom: 35px; left: 12px; background: var(--vegas-blue); color: var(--vegas-blue); }
.w-l-10 { top: 50%; left: 4px; transform: translateY(-50%); background: var(--vegas-pink); color: var(--vegas-pink); }
.w-l-11 { top: 35px; left: 12px; background: var(--vegas-red); color: var(--vegas-red); }
.w-l-12 { top: 12px; left: 35px; background: var(--vegas-gold); color: var(--vegas-gold); }
.w-l-13 { top: 20px; left: 82%; background: var(--vegas-green); color: var(--vegas-green); }
.w-l-14 { bottom: 20px; right: 25px; background: var(--vegas-purple); color: var(--vegas-purple); }
.w-l-15 { top: 73%; left: 7px; background: var(--vegas-gold); color: var(--vegas-gold); }
.w-l-16 { top: 27%; right: 7px; background: var(--vegas-red); color: var(--vegas-red); }

.w-light {
    animation: wheel-light-blink 1.5s ease-in-out infinite alternate;
}

.w-l-1 { animation-delay: 0s; }
.w-l-2 { animation-delay: 0.1s; }
.w-l-3 { animation-delay: 0.2s; }
.w-l-4 { animation-delay: 0.3s; }
.w-l-5 { animation-delay: 0.4s; }
.w-l-6 { animation-delay: 0.5s; }
.w-l-7 { animation-delay: 0.6s; }
.w-l-8 { animation-delay: 0.7s; }
.w-l-9 { animation-delay: 0.8s; }
.w-l-10 { animation-delay: 0.9s; }
.w-l-11 { animation-delay: 1.0s; }
.w-l-12 { animation-delay: 1.1s; }
.w-l-13 { animation-delay: 0.15s; }
.w-l-14 { animation-delay: 0.35s; }
.w-l-15 { animation-delay: 0.55s; }
.w-l-16 { animation-delay: 0.75s; }

@keyframes wheel-light-blink {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.3); }
}

#wheel-canvas {
    border-radius: var(--radius-round);
    position: relative;
    z-index: 2;
}

.wheel-center-cap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--bg-paper);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-8dp);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: var(--accent);
    font-size: 1.2rem;
}

.spin-button {
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-8dp), 0 0 30px var(--accent-glow);
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.spin-button:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-16dp), 0 0 50px var(--accent-glow);
    transform: translateY(-2px);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

.score-display {
    text-align: center;
}

.score-paper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg) var(--space-2xl);
    background: var(--secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-4dp);
    border: 2px solid var(--secondary-darker);
}

.score-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-lighter);
}

.score-value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    transition: all var(--transition-bounce);
}

.score-value.bump {
    transform: scale(1.2);
    color: var(--vegas-gold);
}

.game-result {
    background: var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-result p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
}

.game-result.win {
    background: rgba(102, 187, 106, 0.1);
    border: 2px solid rgba(102, 187, 106, 0.3);
}

.game-result.win p {
    color: #2e7d32;
}

.game-history {
    flex: 1;
}

.game-history h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-lighter);
    margin-bottom: var(--space-sm);
}

#history-list {
    max-height: 120px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

#history-list li {
    padding: var(--space-xs) var(--space-sm);
    background: var(--secondary);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--primary-light);
    border-left: 3px solid var(--accent);
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.game-disclaimer {
    font-size: 0.75rem;
    color: var(--primary-lighter);
    text-align: center;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--secondary-darker);
    margin-bottom: 0;
}

.game-disclaimer i {
    margin-right: 4px;
}

/* ========================================
   RESPONSIBLE GAMING
   ======================================== */
.responsible-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-base);
}

.responsible-paper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-paper-back {
    position: absolute;
    inset: 0;
    background: var(--secondary-darker);
    border-radius: var(--radius-xl);
    transform: translate(5px, 5px) rotate(-0.5deg);
    box-shadow: var(--shadow-4dp);
}

.responsible-paper-front {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-8dp);
    z-index: 2;
    overflow: hidden;
}

.responsible-paper-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--vegas-gold), var(--accent));
}

.responsible-content {
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.responsible-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: rgba(255, 112, 67, 0.1);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
}

.responsible-content h2 {
    font-family: var(--font-display);
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.responsible-content > p {
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    font-size: 1rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.responsible-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--secondary);
    border: 2px solid var(--secondary-darker);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition-fast);
}

.responsible-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-4dp);
}

.responsible-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.badge-item span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

/* ========================================
   SECURITY SECTION
   ======================================== */
.security-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-paper);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.security-card {
    position: relative;
}

.sec-card-paper {
    background: var(--bg-paper);
    border: 2px solid var(--secondary-darker);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-4dp);
    transition: all var(--transition-slow);
    height: 100%;
}

.sec-card-paper:hover {
    box-shadow: var(--shadow-8dp);
    transform: translateY(-4px);
    border-color: var(--accent-lighter);
}

.sec-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: var(--secondary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    box-shadow: var(--shadow-2dp);
}

.sec-card-paper h3 {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.sec-card-paper p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-base);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Contact Form */
.form-paper-stack {
    position: relative;
}

.form-paper-back {
    position: absolute;
    inset: 0;
    background: var(--secondary-darker);
    border-radius: var(--radius-lg);
    transform: translate(var(--paper-offset), var(--paper-offset)) rotate(0.3deg);
    box-shadow: var(--shadow-4dp);
}

.form-paper-front {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-8dp);
    padding: var(--space-2xl);
    z-index: 2;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.form-group label i {
    color: var(--accent);
    font-size: 0.8rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--secondary-darker);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--secondary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    background: var(--bg-paper);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder {
    color: var(--primary-lighter);
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: var(--vegas-red);
    margin-top: var(--space-xs);
    min-height: 1rem;
}

.form-consent {
    margin-bottom: var(--space-xl);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--primary-light);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

.form-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(102, 187, 106, 0.1);
    color: #2e7d32;
    border: 2px solid rgba(102, 187, 106, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(239, 83, 80, 0.1);
    color: #c62828;
    border: 2px solid rgba(239, 83, 80, 0.3);
}

/* Contact Info */
.info-paper-stack {
    position: relative;
}

.info-paper-back {
    position: absolute;
    inset: 0;
    background: var(--secondary-darker);
    border-radius: var(--radius-lg);
    transform: translate(var(--paper-offset), var(--paper-offset)) rotate(-0.3deg);
    box-shadow: var(--shadow-4dp);
}

.info-paper-front {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-8dp);
    padding: var(--space-2xl);
    z-index: 2;
}

.contact-info-content h3 {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: var(--space-xl);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--secondary-dark);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-lighter);
    margin-bottom: 2px;
}

.info-item a,
.info-item span {
    font-size: 0.9rem;
    color: var(--primary);
    word-break: break-all;
}

.info-item a:hover {
    color: var(--accent);
}

/* ========================================
   DISCLOSURE
   ======================================== */
.disclosure-section {
    padding: var(--space-xl) 0;
    background: var(--bg-paper);
}

.disclosure-paper {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 112, 67, 0.05);
    border: 2px solid rgba(255, 112, 67, 0.15);
    border-radius: var(--radius-md);
    max-width: 900px;
    margin: 0 auto;
}

.disclosure-icon {
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclosure-text {
    font-size: 0.85rem;
    color: var(--primary-light);
    line-height: 1.6;
}

.disclosure-text strong {
    color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--primary-darker);
    color: rgba(255,255,255,0.7);
    position: relative;
}

.footer-vegas-lights {
    height: 4px;
    overflow: hidden;
}

.light-strip-footer .bulb {
    width: 5px;
    height: 5px;
}

.footer-content {
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.footer-logo .logo-main {
    font-size: 1rem;
}

.footer-about p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-lg);
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.age-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: white;
    font-weight: 900;
    font-size: 0.75rem;
    border-radius: var(--radius-round);
}

.footer-age-badge span:last-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-bottom-inner p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-sm);
}

.footer-bottom-inner a {
    color: var(--accent-light);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-md) 0;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--accent-light);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: var(--space-md);
}

/* Legal page footer */
.site-footer-legal .footer-content {
    padding: var(--space-xl) 0 0;
}

/* ========================================
   FAB - BACK TO TOP
   ======================================== */
.fab-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-round);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-8dp);
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.fab-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-back-top:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-16dp);
    transform: translateY(-4px);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
    background: var(--bg-base);
}

.legal-main {
    padding: calc(64px + var(--space-3xl)) 0 var(--space-4xl);
    min-height: 80vh;
}

.legal-paper-stack {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.legal-paper-back {
    position: absolute;
    inset: 0;
    background: var(--secondary-darker);
    border-radius: var(--radius-xl);
    transform: translate(6px, 6px) rotate(-0.5deg);
    box-shadow: var(--shadow-4dp);
}

.legal-paper-mid {
    position: absolute;
    inset: 0;
    background: var(--secondary-dark);
    border-radius: var(--radius-xl);
    transform: translate(3px, 3px) rotate(0.3deg);
    box-shadow: var(--shadow-2dp);
}

.legal-paper-front {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-16dp);
    z-index: 3;
    overflow: hidden;
}

.legal-header {
    padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
    text-align: center;
    border-bottom: 3px solid var(--secondary-dark);
    background: var(--secondary);
}

.legal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: var(--accent);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-4dp);
}

.legal-header h1 {
    font-family: var(--font-display);
    font-weight: 900;
    margin-bottom: var(--space-sm);
}

.legal-date {
    font-size: 0.85rem;
    color: var(--primary-lighter);
    margin-bottom: var(--space-sm);
}

.legal-subtitle {
    font-size: 0.95rem;
    color: var(--primary-light);
    max-width: 500px;
    margin: 0 auto;
}

.legal-content {
    padding: var(--space-2xl);
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--secondary-dark);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-num {
    color: var(--accent);
    font-size: 1.5rem;
}

.legal-section p {
    font-size: 0.92rem;
    line-height: 1.7;
}

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

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: var(--space-xs);
    color: var(--primary-light);
}

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
}

/* Legal highlights */
.legal-highlight {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 112, 67, 0.05);
    border: 2px solid rgba(255, 112, 67, 0.15);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.legal-highlight-info {
    background: rgba(66, 165, 245, 0.05);
    border-color: rgba(66, 165, 245, 0.15);
}

.highlight-icon {
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.legal-highlight-info .highlight-icon {
    color: var(--vegas-blue);
}

.highlight-content strong {
    display: block;
    margin-bottom: var(--space-sm);
}

.highlight-content p {
    font-size: 0.88rem;
    margin-bottom: var(--space-xs);
}

/* Legal info box */
.legal-info-box {
    padding: var(--space-lg);
    background: var(--secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    margin: var(--space-md) 0;
}

.legal-info-box p {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

/* Cookie table in legal */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: var(--space-md) 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.cookie-table th {
    background: var(--primary-dark);
    color: white;
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--secondary-dark);
    color: var(--primary-light);
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.gdpr-right-card {
    padding: var(--space-xl);
    background: var(--secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary-darker);
    transition: all var(--transition-slow);
}

.gdpr-right-card:hover {
    border-color: var(--accent-lighter);
    box-shadow: var(--shadow-4dp);
    transform: translateY(-2px);
}

.right-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-paper);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-2dp);
}

.gdpr-right-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.gdpr-right-card p {
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
}

.right-article {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-8dp);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
        z-index: var(--z-nav);
    }

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

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .hero-inner {
        padding: var(--space-2xl) var(--space-lg);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .game-paper-front {
        grid-template-columns: 1fr;
    }

    .wheel-frame {
        width: 280px;
        height: 280px;
    }

    #wheel-canvas {
        width: 260px;
        height: 260px;
    }

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

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-paper {
        flex-wrap: wrap;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--space-sm);
    }

    .cookie-inner {
        flex-direction: column;
        padding: var(--space-md);
    }

    .legal-content {
        padding: var(--space-lg);
    }

    .legal-header {
        padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-paper-stack .paper-layer-1 {
        padding: var(--space-2xl) var(--space-lg);
    }

    .trust-items {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

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

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-paper {
        width: 100%;
    }

    .wheel-frame {
        width: 240px;
        height: 240px;
    }

    #wheel-canvas {
        width: 220px;
        height: 220px;
    }

    .fab-back-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .cookie-banner,
    .age-gate-overlay,
    .fab-back-top,
    .hero-vegas-overlay,
    .header-vegas-lights,
    .footer-vegas-lights,
    .game-section {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.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;
}
