/* ============================================
   ZEN GARDEN CASINO AGGREGATOR - MAIN STYLES
   Japanese Minimalism + VIP Lounge Aesthetic
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Core Palette */
    --primary: #2d2d2d;
    --primary-light: #3d3d3d;
    --primary-dark: #1a1a1a;
    --secondary: #f7f5f0;
    --secondary-warm: #f0ece3;
    --accent: #7d8c6c;
    --accent-light: #96a683;
    --accent-dark: #657356;

    /* Extended Palette */
    --stone: #a09a8f;
    --stone-light: #c8c0b4;
    --stone-dark: #7a756b;
    --bamboo: #c9a96e;
    --bamboo-light: #dcc28e;
    --bamboo-dark: #a88a4e;
    --blossom: #d4a0a0;
    --blossom-light: #e6c0c0;
    --blossom-dark: #b07878;
    --ink: #4a4a4a;
    --ink-light: #6a6a6a;
    --paper: #faf8f3;
    --paper-warm: #f5f0e6;

    /* Functional */
    --text-primary: #2d2d2d;
    --text-secondary: #5a5a5a;
    --text-muted: #8a8a8a;
    --border: #e8e4dc;
    --border-light: #f0ece3;
    --shadow-color: rgba(45, 45, 45, 0.08);
    --shadow-strong: rgba(45, 45, 45, 0.15);

    /* Typography */
    --font-heading: 'Noto Serif JP', 'Cormorant Garamond', serif;
    --font-body: 'Zen Kaku Gothic New', 'Cormorant Garamond', sans-serif;
    --font-display: 'Cormorant Garamond', 'Noto Serif JP', 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;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-med: 0.4s var(--ease-smooth);
    --transition-slow: 0.7s var(--ease-smooth);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

/* ---- 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);
    color: var(--text-primary);
    background-color: var(--paper);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Subtle grain texture overlay on body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* ---- Utility Classes ---- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---- Age Verification Overlay ---- */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s var(--ease-smooth);
}

.age-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-overlay-inner {
    background: var(--paper);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    max-width: 520px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s var(--ease-smooth) both;
}

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

.age-enso {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(45,45,45,0.2);
}

.age-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.age-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.age-text-small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

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

.age-btn {
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
    min-width: 160px;
}

.age-btn-confirm {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(125, 140, 108, 0.3);
}

.age-btn-confirm:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 140, 108, 0.4);
}

.age-btn-deny {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.age-btn-deny:hover {
    background: var(--secondary-warm);
    border-color: var(--stone-light);
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(45,45,45,0.1);
    z-index: 99999;
    padding: var(--space-lg) var(--space-xl);
    animation: slideUp 0.5s var(--ease-smooth) both;
}

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

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

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

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

.cookie-link {
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: underline;
}

.cookie-divider {
    color: var(--stone-light);
    margin: 0 var(--space-sm);
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-btn {
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-accept-btn {
    background: var(--accent);
    color: white;
}

.cookie-accept-btn:hover {
    background: var(--accent-dark);
}

.cookie-necessary-btn {
    background: var(--secondary-warm);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.cookie-necessary-btn:hover {
    background: var(--border);
}

.cookie-settings-btn-main {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cookie-settings-btn-main:hover {
    background: var(--secondary-warm);
}

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

.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;
    color: var(--text-secondary);
    cursor: pointer;
}

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

/* ---- Main Navigation ---- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 228, 220, 0.6);
    transition: all var(--transition-med);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px var(--shadow-color);
}

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

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

.logo-enso {
    display: flex;
    transition: transform var(--transition-med);
}

.nav-logo:hover .logo-enso {
    transform: rotate(15deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

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

.toggle-line {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-med);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-accent {
    color: var(--accent);
    font-weight: 500;
}

.nav-link-accent::after {
    background: var(--accent-dark);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-ink-wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(125, 140, 108, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 160, 160, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--paper) 0%, var(--secondary) 100%);
}

.hero-grain-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-enso-bg {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 50%;
    max-width: 500px;
    opacity: 0.5;
    animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-5xl) var(--space-xl);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-kicker {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line-1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.3s forwards;
}

.title-line-2 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--primary);
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.5s forwards;
}

.title-line-3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.7s forwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.9s forwards;
}

.hero-cta {
    display: inline-block;
    padding: var(--space-md) var(--space-2xl);
    background: var(--primary);
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-med);
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-smooth) 1.1s forwards;
}

.hero-cta:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(125, 140, 108, 0.3);
}

.hero-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-smooth) 0.6s forwards;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(45, 45, 45, 0.12),
        0 4px 20px rgba(45, 45, 45, 0.08);
    max-width: 480px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-image-frame:hover .hero-image {
    transform: scale(1.03);
}

.hero-image-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(125, 140, 108, 0.2);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

/* Sand Dividers */
.sand-divider {
    width: 100%;
    padding: var(--space-xl) 0;
    opacity: 0.6;
}

.sand-divider svg {
    width: 100%;
    height: auto;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--primary);
    padding: var(--space-2xl) 0;
    position: relative;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(125, 140, 108, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--paper);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--stone-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

.stat-divider-v {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(200, 192, 180, 0.3), transparent);
}

/* ---- Casino Comparison Section ---- */
.casinos-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--paper);
}

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

.section-enso {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.filter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.filter-btn {
    padding: var(--space-xs) var(--space-md);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

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

/* Casino Card */
.casino-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-med);
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.6s var(--ease-smooth) 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 cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card:hover {
    border-color: var(--accent);
    box-shadow:
        0 12px 40px var(--shadow-color),
        0 2px 10px var(--shadow-color);
    transform: translateY(-4px);
}

.card-rank {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--bamboo);
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, var(--paper) 0%, var(--secondary-warm) 100%);
}

.card-logo-area {
    flex-shrink: 0;
}

.card-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.15);
}

.card-logo-letter {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--paper);
    letter-spacing: 0.05em;
}

.card-title-area {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2px;
}

.card-license {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.card-rating-area {
    flex-shrink: 0;
}

.rating-circle {
    position: relative;
    width: 56px;
    height: 56px;
}

.rating-svg {
    width: 56px;
    height: 56px;
    transform: rotate(-90deg);
}

.rating-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-dark);
}

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

.card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.feature-tag {
    padding: 3px var(--space-sm);
    background: var(--secondary-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

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

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

.star {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.star::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--border);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.filled::before {
    background: var(--bamboo);
}

.star.half::before {
    background: linear-gradient(90deg, var(--bamboo) 50%, var(--border) 50%);
}

.card-cta {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary);
    color: var(--paper);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    letter-spacing: 0.03em;
}

.card-cta:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-1px);
}

/* ---- Reviews Section ---- */
.reviews-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--secondary);
}

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

.review-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-med);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px var(--shadow-color);
    border-color: var(--accent);
}

.review-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.review-card:hover .review-image {
    transform: scale(1.06);
}

.review-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45, 45, 45, 0.4) 100%);
}

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

.review-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.review-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.review-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-date, .review-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---- Comparison Table ---- */
.comparison-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--paper);
}

.table-scroll-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

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

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

.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

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

.comparison-table tbody tr:hover {
    background: var(--secondary-warm);
}

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

.table-name {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary);
    font-size: 1rem;
}

.table-rating {
    display: inline-block;
    padding: 2px var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.table-rating.high {
    background: rgba(125, 140, 108, 0.12);
    color: var(--accent-dark);
}

.table-rating.mid {
    background: rgba(201, 169, 110, 0.12);
    color: var(--bamboo-dark);
}

.table-yes {
    color: var(--accent);
    font-weight: 500;
}

.table-no {
    color: var(--stone);
}

.table-link {
    display: inline-block;
    padding: 4px var(--space-md);
    background: var(--primary);
    color: var(--paper);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.table-link:hover {
    background: var(--accent-dark);
    color: white;
}

/* ---- VIP Gallery Section ---- */
.vip-gallery-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--secondary);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-med);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item-large .gallery-img {
    min-height: 420px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(transparent, rgba(45, 45, 45, 0.7));
    color: var(--paper);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-med);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Spin the Wheel Game Section ---- */
.game-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--paper);
    position: relative;
}

.game-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(125, 140, 108, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.game-disclaimer-note {
    font-size: 0.85rem;
    color: var(--blossom-dark);
    font-style: italic;
    margin-top: var(--space-sm);
}

.wheel-game-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.wheel-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

#wheelCanvas {
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    box-shadow:
        0 0 0 8px var(--primary),
        0 0 0 12px var(--bamboo),
        0 0 0 16px var(--primary),
        0 20px 60px rgba(45, 45, 45, 0.2);
}

.wheel-controls {
    text-align: center;
}

.spin-button {
    display: inline-block;
    padding: var(--space-lg) var(--space-3xl);
    background: var(--primary);
    color: var(--paper);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-med);
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.2);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
}

.spin-button:hover:not(:disabled) {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(125, 140, 108, 0.3);
}

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

.wheel-result {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--bamboo-dark);
    min-height: 2em;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-med);
}

.wheel-result.show {
    animation: resultPop 0.5s var(--ease-bounce);
}

@keyframes resultPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.wheel-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.points-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.points-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-dark);
}

/* ---- Responsible Gaming Section ---- */
.responsible-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--secondary);
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.responsible-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--paper);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-med);
}

.responsible-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-color);
    border-color: var(--accent);
}

.responsible-icon {
    margin-bottom: var(--space-lg);
}

.responsible-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.responsible-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.responsible-links {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.responsible-links p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.responsible-ext-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.responsible-ext-link:hover {
    color: var(--accent-dark);
}

.responsible-sep {
    margin: 0 var(--space-md);
    color: var(--stone-light);
}

.age-reminder {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--paper);
    border-radius: var(--radius-lg);
    border: 2px solid var(--blossom-light);
}

.age-reminder-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--blossom);
    color: white;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.age-reminder p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Trust & Security Section ---- */
.trust-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--paper);
}

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

.trust-item {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-med);
}

.trust-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

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

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.affiliate-disclosure {
    background: var(--secondary-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.affiliate-disclosure h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.affiliate-disclosure p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ---- Contact Section ---- */
.contact-section {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--secondary);
}

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

.contact-info-block .section-enso {
    margin: 0 0 var(--space-md) 0;
}

.contact-info-block .section-title {
    text-align: left;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

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

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

.contact-detail-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-detail-item strong {
    color: var(--primary);
}

/* Contact Form */
.contact-form-block {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-xl);
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.03em;
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--paper);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--stone-light);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(125, 140, 108, 0.12);
}

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

.consent-label {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

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

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

.form-submit {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: var(--primary);
    color: var(--paper);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.05em;
}

.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(125, 140, 108, 0.3);
}

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

.form-message.success {
    display: block;
    background: rgba(125, 140, 108, 0.1);
    color: var(--accent-dark);
    border: 1px solid rgba(125, 140, 108, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(212, 160, 160, 0.1);
    color: var(--blossom-dark);
    border: 1px solid rgba(212, 160, 160, 0.3);
}

/* ---- Footer ---- */
.main-footer {
    background: var(--primary);
    color: var(--stone-light);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--bamboo), var(--blossom), var(--accent));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

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

.footer-logo-enso {
    display: inline-flex;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--paper);
    font-weight: 500;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.6;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--paper);
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link-list a {
    font-size: 0.85rem;
    color: var(--stone);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 192, 180, 0.2), transparent);
    margin-bottom: var(--space-xl);
}

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

.footer-bottom-left p {
    font-size: 0.8rem;
    color: var(--stone-dark);
    line-height: 1.6;
}

.footer-bottom-center {
    text-align: center;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--blossom);
    color: var(--blossom);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--stone-dark);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-right p {
    font-size: 0.8rem;
    color: var(--stone-dark);
}

/* ---- Scroll Reveal Animations ---- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: var(--space-3xl) var(--space-xl);
    }

    .hero-image-block {
        order: -1;
    }

    .hero-image {
        height: 300px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsible-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-left, .footer-bottom-right {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-large .gallery-img {
        min-height: 300px;
    }
}

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform var(--transition-med);
        box-shadow: 0 8px 30px var(--shadow-color);
    }

    .nav-links.open {
        transform: translateY(0);
    }

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

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

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

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

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

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

    .stats-container {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider-v {
        width: 50px;
        height: 1px;
    }

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

    .wheel-wrapper {
        width: 300px;
        height: 300px;
    }

    #wheelCanvas {
        width: 300px;
        height: 300px;
    }

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

    .gallery-item-large {
        grid-column: span 1;
    }

    .gallery-item-large .gallery-img {
        min-height: 250px;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 15px;
    }

    .section-container {
        padding: 0 var(--space-lg);
    }

    .hero-image {
        height: 240px;
    }

    .wheel-wrapper {
        width: 260px;
        height: 260px;
    }

    #wheelCanvas {
        width: 260px;
        height: 260px;
    }

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

    .age-buttons {
        flex-direction: column;
    }

    .age-btn {
        min-width: 100%;
    }
}

/* ---- Legal Pages Shared Styles ---- */
.legal-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--paper);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl) var(--space-5xl);
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: var(--space-2xl);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-back-link:hover {
    color: var(--accent-dark);
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-3xl);
    font-style: italic;
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.legal-section li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

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

.legal-contact-box {
    background: var(--secondary-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.legal-contact-box p {
    margin-bottom: var(--space-xs);
}

/* ---- Print Styles ---- */
@media print {
    .main-header,
    .age-overlay,
    .cookie-banner,
    .game-section,
    .nav-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero-section {
        min-height: auto;
        padding-top: 0;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}
