/*
Theme Name: FadeSocial
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
    /* Light minimalist – white, grey, black accent (palette 1) */
    --accent: #1A1A1A;
    --accent-light: #333333;
    --accent-dark: #000000;
    --sand: #F0F0F0;
    --sand-dark: #E5E5E5;
    
    --gold: #8C8C8C;
    --gold-light: #A3A3A3;
    --gold-dark: #525252;
    
    --coral: #991B1B;
    --coral-dark: #7F1D1D;
    
    --purple: #525252;
    --blue: #404040;
    --green: #1A1A1A;
    --teal: #1A1A1A;
    
    /* Neutrals – light */
    --bg-primary: #FAFAFA;
    --bg-secondary: #F5F5F5;
    --bg-tertiary: #EEEEEE;
    --surface: #FFFFFF;
    --surface-elevated: #FFFFFF;
    
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-tertiary: #737373;
    
    --border: #E5E5E5;
    --border-light: #EBEBEB;
    
    /* Gradients – black accent */
    --gradient-primary: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    --gradient-purple: linear-gradient(135deg, #404040 0%, #262626 100%);
    --gradient-blue: linear-gradient(135deg, #404040 0%, #1A1A1A 100%);
    --gradient-green: linear-gradient(135deg, #262626 0%, #1A1A1A 100%);
    
    /* Shadows – soft grey for light theme */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography */
    --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

/* Prevent horizontal scroll globally; fallback for placeholder images */
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}
img[src*="assets/images"]:not(.brand-logo) {
    min-height: 60px;
}

section, header, footer, main, aside, article {
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: #FFFFFF;
}

/* Layout */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 var(--space-sm);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Site header (wrapper for unified nav) */
.site-header {
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.brand-icon,
.brand-logo {
    width: 32px;
    height: 32px;
}
.brand-icon {
    stroke-width: 2;
    color: var(--accent);
}

.brand:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-btn {
    background: var(--accent);
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--surface-elevated);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-modern {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-modern .content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(12px);
    animation: float 6s ease-in-out infinite;
}

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

.card-1 {
    top: 20px;
    left: 0;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 180px;
    right: 0;
    width: 260px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 40px;
    left: 60px;
    width: 220px;
    animation-delay: 4s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.card-icon {
    font-size: 28px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
}

.card-stats {
    display: flex;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-light);
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trust Section */
.trust-section {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke-width: 2;
    flex-shrink: 0;
}

/* Section Headers */
.section-head {
    margin-bottom: var(--space-3xl);
}

.section-head.centered {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Demo Interactive */
.demo-interactive {
    padding: var(--space-3xl) 0;
}

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

.demo-game {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: sticky;
    top: 100px;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
}

.game-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.game-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--accent-light);
    font-weight: 600;
}

.game-balance {
    text-align: right;
}

.balance-label {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.balance-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-light);
}

.slots-container {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.slot-reel {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slot-reel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 148, 136, 0.06) 100%);
    pointer-events: none;
}

.reel-symbol {
    font-size: 56px;
}

.game-controls {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    padding: 8px;
    border-radius: var(--radius-md);
}

.bet-btn {
    width: 40px;
    height: 40px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.bet-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.bet-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--space-md);
}

.bet-label {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bet-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-light);
}

.spin-button {
    flex: 1;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.game-footer {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Demo Features */
.demo-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.feature-highlight {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.highlight-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.highlight-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.explore-link:hover {
    gap: 12px;
}

.explore-link svg {
    stroke-width: 2.5;
}

/* Features Modern */
.features-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--border);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(13, 148, 136, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    color: var(--accent);
}

.accent-purple .feature-icon-wrap { background: rgba(109, 122, 158, 0.12); }
.accent-purple .feature-svg { color: var(--purple); }

.accent-blue .feature-icon-wrap { background: rgba(61, 90, 128, 0.15); }
.accent-blue .feature-svg { color: var(--blue); }

.accent-green .feature-icon-wrap { background: rgba(13, 148, 136, 0.12); }
.accent-green .feature-svg { color: var(--green); }

.accent-orange .feature-icon-wrap { background: rgba(200, 162, 39, 0.12); }
.accent-orange .feature-svg { color: var(--gold); }

.accent-pink .feature-icon-wrap { background: rgba(224, 122, 95, 0.12); }
.accent-pink .feature-svg { color: var(--coral); }

.accent-teal .feature-icon-wrap { background: rgba(20, 184, 166, 0.12); }
.accent-teal .feature-svg { color: var(--teal); }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: var(--space-3xl) 0;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: var(--space-md);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--border-light);
    align-self: center;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: -10px;
    color: var(--accent);
    font-size: 20px;
}

/* Stats Dashboard */
.stats-dashboard {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

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

.stat-box {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
}

.stat-box .stat-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-box .stat-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box .stat-text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

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

.responsible-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-xl);
}

.responsible-icon {
    flex-shrink: 0;
}

.responsible-icon svg {
    width: 56px;
    height: 56px;
    color: var(--coral);
    stroke-width: 2;
}

.responsible-text h3 {
    font-size: 24px;
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.responsible-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.help-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.help-links a {
    padding: 12px 24px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.help-links a:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

/* FAQ Modern */
.faq-modern {
    padding: var(--space-3xl) 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-md);
}

.faq-modern-item {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-modern-item:hover {
    border-color: var(--accent);
}

.faq-modern-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    list-style: none;
    user-select: none;
}

.faq-modern-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    stroke-width: 2.5;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-modern-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* Footer Modern */
.footer-modern {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-logo .brand-icon,
.footer-logo .brand-logo {
    width: 32px;
    height: 32px;
}
.footer-logo .brand-icon {
    color: var(--accent);
    stroke-width: 2;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.footer-column h4 {
    font-size: 14px;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    margin-top: var(--space-lg);
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.footer-notice p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-disclaimer {
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-modern .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .demo-layout {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        padding: var(--space-lg);
        gap: var(--space-sm);
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        pointer-events: none;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: flex-start;
    }
    
    .metric-divider {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-layout {
        grid-template-columns: 1fr;
    }
    
    .help-links {
        flex-direction: column;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .slots-container {
        gap: var(--space-sm);
    }
    
    .slot-reel {
        width: 90px;
        height: 90px;
    }
    
    .reel-symbol {
        font-size: 42px;
    }
    
    .game-controls {
        flex-direction: column;
    }
    
    .bet-controls {
        width: 100%;
        justify-content: center;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-primary.large {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .hero-actions {
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .footer-main {
        gap: var(--space-xl);
    }
    
    .footer-links-group {
        gap: var(--space-md);
    }
    
    .footer-column h4 {
        font-size: 13px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .nav-container {
        padding: 0 var(--space-sm);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.page-header .content-wrapper {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

.page-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.page-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 720px;
}

/* Games Section */
.games-section {
    padding: var(--space-3xl) 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.game-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.game-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon {
    font-size: 80px;
}

.game-details {
    padding: var(--space-xl);
}

.game-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.game-stats {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.game-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.game-stat svg {
    color: var(--accent);
}

.game-play-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Coming Soon */
.coming-soon-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Section */
.legal-section {
    padding: var(--space-3xl) 0;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-3xl);
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--space-lg);
}

.legal-nav a {
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: var(--transition);
}

.legal-nav a:hover {
    background: var(--surface);
    color: var(--accent-light);
}

.legal-info-box {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.legal-info-box h4 {
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.legal-info-box p {
    color: var(--accent-light);
    font-weight: 600;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.legal-alert {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--coral);
    border-radius: var(--radius-lg);
}

.alert-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.legal-alert h3 {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 8px;
}

.legal-alert p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-highlight {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(13, 148, 136, 0.1);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
}

.highlight-icon {
    font-size: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.legal-highlight h3 {
    font-size: 20px;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.legal-highlight p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-block {
    scroll-margin-top: 100px;
}

.legal-block h2 {
    font-size: 24px;
    margin-bottom: var(--space-md);
}

.legal-block h3 {
    font-size: 18px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-md);
}

.legal-block li {
    padding: 10px 0;
    padding-left: 32px;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.7;
}

.legal-block li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

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

.legal-block a:hover {
    color: var(--accent);
}

/* Responsible Gaming Specific */
.urgent-help {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

.urgent-help-box {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--coral);
    border-radius: var(--radius-xl);
}

.urgent-icon {
    flex-shrink: 0;
}

.urgent-icon svg {
    width: 64px;
    height: 64px;
    color: var(--coral);
    stroke-width: 2;
}

.urgent-content h2 {
    font-size: 32px;
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.urgent-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.help-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.help-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.help-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.help-btn.primary {
    background: var(--coral);
    color: white;
}

.help-btn.primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.help-btn.secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.help-btn.secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--coral);
}

.content-main-full {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.warning-block {
    background: rgba(255, 107, 107, 0.05);
    border-color: var(--coral);
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.warning-item {
    padding: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.warning-item .warning-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.warning-item h3 {
    font-size: 18px;
    margin-bottom: var(--space-sm);
    color: var(--coral);
}

.warning-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.sign-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.sign-icon {
    width: 24px;
    height: 24px;
    color: var(--coral);
    stroke-width: 2;
    flex-shrink: 0;
}

.sign-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.emphasis-text {
    padding: var(--space-md);
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--coral);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    margin-top: var(--space-lg);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.fact-card {
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.fact-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.fact-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

.fact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.resource-card {
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.resource-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.resource-flag {
    font-size: 32px;
}

.resource-card h3 {
    font-size: 18px;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

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

.resource-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.resource-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.resource-link svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    stroke-width: 2;
    flex-shrink: 0;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin-top: var(--space-md);
}

.commitment-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.final-message {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(13, 148, 136, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.8;
}

/* Responsive Legal Pages */
@media (max-width: 1024px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .urgent-help-box {
        flex-direction: column;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .warning-grid,
    .signs-grid,
    .facts-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Section */
.content-section {
    padding: var(--space-3xl) 0;
}

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

.content-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.content-block {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: var(--space-md);
}

.content-block h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    padding: 12px 0;
    padding-left: 32px;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.7;
}

.content-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.highlight-block {
    background: rgba(13, 148, 136, 0.06);
    border-color: var(--accent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.value-item {
    text-align: center;
    padding: var(--space-lg);
}

.value-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.value-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-md);
}

.sidebar-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

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

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.fact-label {
    font-size: 14px;
    color: var(--text-tertiary);
}

.fact-value {
    font-weight: 600;
    color: var(--accent-light);
}

.sidebar-link {
    display: block;
    color: var(--accent-light);
    text-decoration: none;
    margin-top: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-link:hover {
    padding-left: 8px;
}

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

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

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: var(--space-sm);
}

.form-intro {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-tertiary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.info-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    stroke-width: 2;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 14px;
}

.info-card a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-card a:hover {
    text-decoration: underline;
}

/* Contact Notice */
.contact-notice {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

.notice-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.notice-box h3 {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.notice-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.notice-box a {
    color: var(--coral);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        position: static;
    }
}

/* Advanced Slot Section */
.advanced-slot-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.slot-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.slot-stat-box {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.slot-stat-box.highlight {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.06);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-value.gold {
    color: var(--gold);
}

.slot-message-box {
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advanced-slot-machine {
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.slot-reels-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.slot-reel-column {
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.reel-symbol {
    font-size: 56px;
    padding: var(--space-md);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.reel-symbol:last-child {
    border-bottom: none;
}

.paylines-info {
    text-align: center;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 14px;
    margin-top: var(--space-md);
}

.slot-controls {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.control-btn {
    padding: var(--space-md) var(--space-lg);
    background: var(--surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.control-btn.auto {
    background: rgba(13, 148, 136, 0.1);
    border-color: var(--accent);
    color: var(--accent-light);
}

.spin-btn {
    padding: var(--space-lg);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.secondary-slot-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.secondary-btn {
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    color: var(--accent-light);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: rgba(13, 148, 136, 0.12);
}

.slot-paytable {
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.slot-paytable.hidden {
    display: none;
}

.slot-paytable h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--accent-light);
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.paytable-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.paytable-row.special {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.06);
}

.paytable-symbol {
    font-size: 40px;
    flex-shrink: 0;
}

.paytable-details {
    flex: 1;
}

.paytable-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}

.paytable-payout {
    font-size: 13px;
    color: var(--text-secondary);
}

.session-statistics {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.session-statistics h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.session-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.session-stat {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.session-stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.session-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-light);
}

.game-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: var(--space-lg);
}

/* Responsive */
@media (max-width: 768px) {
    .slot-controls {
        grid-template-columns: 1fr 1fr;
    }
    
    .spin-btn {
        grid-column: 1 / -1;
    }
    
    .slot-reels-container {
        gap: var(--space-sm);
    }
    
    .reel-symbol {
        font-size: 40px;
        padding: var(--space-sm);
    }
    
    .steps-container {
        gap: var(--space-lg);
    }
    
    .step-card {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .slot-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reel-symbol {
        font-size: 32px;
    }
}

/* ========== Homepage blocks (block-hero, block-voordelen, block-stappen, etc.) ========== */
.block-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.block-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.block-hero-bg .block-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.block-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
}
.block-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}
.block-hero-badge i { font-size: 12px; }
.block-hero-title {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    color: #FFFFFF;
}
.block-hero-title-accent {
    display: block;
    color: rgba(255, 255, 255, 0.95);
}
.block-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}
.block-hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}
.block-hero-actions .btn-secondary { color: #FFFFFF; border-color: rgba(255,255,255,0.5); background: transparent; }
.block-hero-actions .btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #FFF; }
.block-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}
.block-hero-stats strong { color: #FFFFFF; margin-right: 4px; }
.block-hero-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.block-hero-media img { width: 100%; height: auto; display: block; }

/* Block head (shared) */
.block-head { margin-bottom: var(--space-2xl); }
.block-head--center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: var(--space-2xl); }
.block-head-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}
.block-head-title { font-size: clamp(32px, 4vw, 48px); margin-bottom: var(--space-sm); }
.block-head-desc { color: var(--text-secondary); font-size: 17px; }

/* Voordelen grid */
.block-voordelen { padding: var(--space-3xl) 0; background: var(--bg-secondary); }
.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}
.voordelen-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
}
.voordelen-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.voordelen-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
}
.voordelen-card--featured img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.voordelen-card-icon { font-size: 28px; color: var(--accent); margin-bottom: var(--space-md); display: block; }
.voordelen-card h3 { font-size: 18px; margin-bottom: 8px; }
.voordelen-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* Stappen */
.block-stappen { padding: var(--space-3xl) 0; background: var(--bg-primary); }
.stappen-layout {
    display: grid;
    gap: var(--space-3xl);
    align-items: stretch;
    max-width: 1140px;
    margin: 0 auto;
}
.stappen-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-content: center;
}
.stap-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
}
.stap-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.stap-card-num {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.stap-card-icon {
    width: 64px;
    height: 64px;
    margin: var(--space-lg) auto var(--space-md);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.08) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}
.stap-card:hover .stap-card-icon {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.12) 100%);
    transform: scale(1.05);
}
.stap-card-icon i {
    font-size: 26px;
    color: var(--accent);
}
.stap-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}
.stap-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}
.stappen-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    align-self: center;
}
.stappen-media img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

/* Spellen block */
.block-spellen { padding: var(--space-3xl) 0; background: var(--bg-secondary); }
.spellen-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--space-3xl);
    align-items: start;
}
.spellen-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.spellen-media img { width: 100%; height: auto; display: block; }
.spellen-desc { color: var(--text-secondary); margin-bottom: var(--space-xl); }
.demo-compact {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}
.demo-compact-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-lg); }
.demo-compact-header h3 { font-size: 20px; margin-bottom: 6px; }
.demo-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}
.demo-balance { text-align: right; }
.demo-balance-label { display: block; font-size: 12px; color: var(--text-tertiary); }
.demo-balance-value { font-size: 22px; font-weight: 700; color: var(--text-primary); }
.demo-reels {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.demo-reel {
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-reel .reel-symbol { font-size: 48px; }
.demo-controls { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); }
.demo-bet {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    padding: 8px;
    border-radius: var(--radius-md);
}
.demo-bet-btn {
    width: 36px;
    height: 36px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.demo-bet-btn:hover { border-color: var(--accent); background: var(--bg-tertiary); }
.demo-bet-display { padding: 0 var(--space-sm); text-align: center; }
.demo-bet-label { font-size: 11px; color: var(--text-tertiary); display: block; }
.demo-bet-value { font-size: 18px; font-weight: 700; color: var(--accent); }
.demo-spin {
    flex: 1;
    padding: 14px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.demo-spin:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.demo-paylines { font-size: 13px; color: var(--text-tertiary); text-align: center; margin: 0; }
.spellen-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    list-style: none;
    padding: 0;
}
.spellen-features li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.spellen-features i { color: var(--accent); }
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.link-arrow:hover { gap: 12px; }

/* Trust block */
.block-trust {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    align-items: center;
}
.block-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}
.block-trust .trust-ico { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.trust-media {
    margin-top: var(--space-lg);
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.trust-media img { width: 100%; height: auto; border-radius: var(--radius-md); }

/* Stats block */
.block-stats {
    padding: var(--space-2xl) 0;
    background: var(--accent);
}
.stats-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    color: rgba(255,255,255,0.95);
    font-size: 15px;
}
.stats-list i { font-size: 28px; margin-bottom: 8px; display: block; color: #FFFFFF; }
.stats-value { font-weight: 700; font-size: 28px; display: block; margin-bottom: 4px; }

/* Verantwoord block */
.block-verantwoord { padding: var(--space-3xl) 0; background: var(--bg-secondary); }
.verantwoord-layout {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.block-verantwoord .verantwoord-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.block-verantwoord .verantwoord-media img { width: 100%; height: auto; display: block; }
.verantwoord-content {
    padding: var(--space-xl);
    background: rgba(153, 27, 27, 0.06);
    border: 1px solid rgba(153, 27, 27, 0.25);
    border-radius: var(--radius-xl);
}
.block-verantwoord .verantwoord-icon { font-size: 28px; color: var(--coral); margin-bottom: var(--space-md); }
.verantwoord-content h3 { font-size: 22px; color: var(--coral); margin-bottom: var(--space-md); }
.verantwoord-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--space-md); }
.verantwoord-links { display: flex; gap: var(--space-md); margin-top: var(--space-lg); flex-wrap: wrap; }
.verantwoord-links a {
    padding: 12px 24px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.verantwoord-links a:hover { background: var(--bg-tertiary); border-color: var(--accent); }

/* FAQ block */
.block-faq { padding: var(--space-3xl) 0; }
.block-faq .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm); }
.block-faq .faq-item {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.block-faq .faq-item:hover { border-color: var(--accent); }
.block-faq .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    list-style: none;
    user-select: none;
}
.block-faq .faq-item summary::-webkit-details-marker { display: none; }
.block-faq .faq-chevron { color: var(--accent); font-size: 14px; transition: var(--transition); }
.block-faq .faq-item[open] .faq-chevron { transform: rotate(180deg); }
.block-faq .faq-body { padding: 0 var(--space-lg) var(--space-lg); }
.block-faq .faq-body p { color: var(--text-secondary); line-height: 1.8; margin: 0; }

/* CTA block */
.block-cta {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}
.block-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.block-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.block-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.block-cta-inner h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: var(--space-md); color: #FFFFFF; }
.block-cta-inner p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: var(--space-xl); }
.block-cta-inner .btn-primary i { margin-left: 8px; }

/* Veilig block */
.block-veilig {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}
.block-veilig-title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}
.block-veilig-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}
.block-veilig-logo { display: block; }
.block-veilig-logo img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.block-veilig-logo:hover img { opacity: 0.8; transform: scale(1.05); }

/* Footer media */
.footer-media {
    margin-top: var(--space-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 280px;
}
.footer-media img { width: 100%; height: auto; display: block; }
.footer-notice .fa-circle-info { font-size: 22px; color: var(--text-secondary); flex-shrink: 0; margin-top: 2px; }

.footer-age-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    margin-top: var(--space-md);
    border-top: 1px solid var(--border);
}
.footer-age-notice .fa-user-clock { font-size: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-age-notice p { color: var(--text-secondary); font-size: 14px; line-height: 1.5; margin: 0; }

/* Legacy: footer visual (other pages) */
.footer-visual {
    margin-top: var(--space-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 280px;
}
.footer-visual img { width: 100%; height: auto; display: block; }

@media (max-width: 1024px) {
    .block-hero-inner { grid-template-columns: 1fr; }
    .block-hero-media { order: -1; max-height: 280px; }
    .stappen-layout { grid-template-columns: 1fr; }
    .stappen-flow { grid-template-columns: 1fr; }
    .spellen-layout { grid-template-columns: 1fr; }
    .voordelen-grid { grid-template-columns: 1fr 1fr; }
    .voordelen-card--featured { grid-column: span 2; grid-row: span 1; max-height: 240px; }
    .verantwoord-layout { grid-template-columns: 1fr; }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .stats-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .trust-row { grid-template-columns: 1fr; }
    .voordelen-grid { grid-template-columns: 1fr; }
    .voordelen-card--featured { grid-column: span 1; }
    .stats-list { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .block-hero-media { max-height: 220px; }
    .stap-card { padding: var(--space-lg); }
    .voordelen-card { padding: var(--space-lg); }
    .verantwoord-content { padding: var(--space-lg); }
    .block-faq .faq-list { padding: 0 var(--space-sm); }
    .block-cta-inner { padding: 0 var(--space-sm); }
}

@media (max-width: 480px) {
    .block-hero-inner { gap: var(--space-lg); }
    .block-hero-media { max-height: 180px; }
    .stats-list { grid-template-columns: 1fr; gap: var(--space-sm); }
    .stats-list li { padding: var(--space-sm); }
    .stats-value { font-size: 22px; }
    .stappen-flow { gap: var(--space-md); }
    .stap-card { padding: var(--space-md); }
    .voordelen-card { padding: var(--space-md); }
    .voordelen-card h3 { font-size: 18px; }
    .verantwoord-content { padding: var(--space-md); }
    .verantwoord-content h3 { font-size: 18px; }
    .block-faq .faq-item summary { padding: var(--space-md); font-size: 14px; }
    .block-faq .faq-body { padding: 0 var(--space-md) var(--space-md); }
    .block-cta-inner h2 { font-size: 24px; }
    .block-cta-inner p { font-size: 15px; }
    .demo-reels { gap: var(--space-sm); }
    .demo-reel { width: 70px; height: 70px; }
    .demo-reel .reel-symbol { font-size: 32px; }
    .demo-compact-header h3 { font-size: 16px; }
    .demo-balance-value { font-size: 18px; }
}

/* Age-gate overlay */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.age-gate-overlay[hidden] {
    display: none !important;
}
.age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.age-gate-box {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-xl);
}
.age-gate-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.age-gate-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}
.age-gate-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.age-gate-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.age-gate-ja {
    background: var(--accent);
    color: #FFFFFF;
}
.age-gate-nee {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

@media (max-width: 480px) {
    .age-gate-box {
        padding: 24px 20px;
        margin: 0 10px;
    }
    .age-gate-title {
        font-size: 1.25rem;
    }
    .age-gate-text {
        font-size: 14px;
    }
    .age-gate-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .age-gate-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Cookie consent banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.cookie-consent-text {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}
.cookie-consent-text a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-consent-btn {
    padding: 10px 20px;
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 14px 16px;
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-text {
        font-size: 13px;
    }
    .cookie-consent-btn {
        width: 100%;
    }
}

/* Veilig spelen block */
.veilig-spelen {
    padding: var(--space-xl, 2rem) 0;
    background: var(--bg-secondary, #1F2833);
    border-top: 1px solid var(--border, #2A2D36);
}
.veilig-spelen-title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-lg, 1.5rem);
    color: var(--text-primary, #fff);
}
.veilig-spelen-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg, 1.5rem);
}
.veilig-spelen-logo {
    display: block;
}
.veilig-spelen-logo img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.veilig-spelen-logo:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Veilig spelen logos - адаптив */
@media (max-width: 768px) {
    .veilig-spelen-logos {
        gap: var(--space-md, 1rem);
    }
    .veilig-spelen-logo img {
        width: 60px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .veilig-spelen-logos {
        gap: var(--space-sm, 0.75rem);
    }
    .veilig-spelen-logo img {
        width: 50px;
        height: 25px;
    }
    .veilig-spelen-title {
        font-size: 1rem;
    }
}

/* Footer juridische info – blok met kaart en gegevens */
.footer-juridisch-wrap {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}
@media (max-width: 900px) {
    .footer-juridisch-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-juridisch-wrap {
        margin-top: var(--space-xl);
        padding-top: var(--space-xl);
        gap: var(--space-lg);
    }
    .footer-juridisch {
        padding: var(--space-md);
        font-size: 0.85rem;
    }
    .footer-map-wrap h4 {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
}

.footer-juridisch {
    margin-top: 0;
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.footer-juridisch h4 {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-juridisch p {
    margin: 6px 0;
    line-height: 1.5;
}
.footer-juridisch a {
    color: var(--accent-light);
    text-decoration: none;
}
.footer-juridisch a:hover {
    text-decoration: underline;
}
.footer-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.footer-map-wrap h4 {
    font-size: 1rem;
    color: var(--accent-light);
    padding: var(--space-md) var(--space-lg);
    margin: 0;
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-map-wrap iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
    filter: grayscale(20%) contrast(1.02);
}
