/* ============================================
   BALKENOVA - Casino Aggregator
   Gradient Flow Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #1e0533;
    --primary-deep: #0d0118;
    --primary-mid: #2d0a4e;
    --primary-light: #4a1570;
    --secondary: #ffffff;
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --accent-dim: #d97706;
    --accent-dark: #92400e;

    --glass-bg: rgba(30, 5, 51, 0.45);
    --glass-bg-light: rgba(255, 255, 255, 0.06);
    --glass-bg-medium: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-accent: rgba(251, 191, 36, 0.2);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.35);

    --gradient-main: linear-gradient(
        170deg,
        #0d0118 0%,
        #1e0533 15%,
        #2d0a4e 30%,
        #4a1570 45%,
        #6b21a8 55%,
        #7c3aed 65%,
        #a855f7 72%,
        #c084fc 78%,
        #d946ef 82%,
        #ec4899 86%,
        #f43f5e 90%,
        #f97316 95%,
        #fbbf24 100%
    );

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.15);
    --shadow-glow-accent: 0 0 60px rgba(251, 191, 36, 0.25);
    --shadow-glow-purple: 0 0 80px rgba(168, 85, 247, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --header-height: 80px;
    --container-max: 1280px;
    --container-wide: 1440px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--gradient-main);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-primary);
}

::selection {
    background: rgba(251, 191, 36, 0.3);
    color: var(--secondary);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dim);
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

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

.age-modal-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 5, 51, 0.9), rgba(45, 10, 78, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    animation: modalSlideUp 0.6s var(--ease-out-expo);
}

.age-modal-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.age-modal-content {
    position: relative;
    z-index: 1;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.age-modal-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.age-modal-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.age-warning-text {
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 14px !important;
    margin-bottom: 28px !important;
}

.age-modal-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.age-btn-confirm {
    flex: 1;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.age-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.age-btn-deny {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.age-btn-deny:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.age-modal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
}

.age-modal-links a {
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.age-modal-links a:hover {
    color: var(--accent);
}

.age-link-divider {
    color: var(--text-muted);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: linear-gradient(180deg, rgba(13, 1, 24, 0.95), rgba(30, 5, 51, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 24px 32px;
    animation: slideUpBanner 0.5s var(--ease-out-expo);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent);
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn-accept {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
}

.cookie-btn-essential {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.cookie-btn-essential:hover {
    background: rgba(255, 255, 255, 0.12);
}

.cookie-btn-settings {
    padding: 12px 24px;
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-btn-settings:hover {
    color: var(--accent);
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.cookie-setting-row {
    padding: 8px 0;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

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

.cookie-btn-save {
    margin-top: 12px;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--primary-deep);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 5000;
    transition: all 0.4s var(--ease-out-expo);
}

.main-header.scrolled {
    background: rgba(13, 1, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.45);
    color: var(--primary-deep);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

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

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 4999;
    background: rgba(13, 1, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.mobile-nav-link:hover {
    color: var(--accent);
    transform: scale(1.05);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 32px 60px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-wide);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    animation: fadeSlideUp 0.8s var(--ease-out-expo);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent), #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-mono);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

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

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
    color: var(--primary-deep);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* Hero Visual (Dashboard Card) */
.hero-visual {
    position: relative;
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-dashboard-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    position: relative;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #fbbf24; }
.dashboard-dots span:nth-child(3) { background: #22c55e; }

.dashboard-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.hero-dashboard-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    opacity: 0.8;
}

.dashboard-overlay-stats {
    display: flex;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
}

.overlay-stat-val {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-mono);
}

.overlay-stat-lbl {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(30, 5, 51, 0.8);
    border: 1px solid var(--glass-border-accent);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 3s;
}

.fc-icon {
    font-size: 24px;
    color: var(--accent);
}

.fc-icon-chart {
    font-size: 20px;
    color: #22c55e;
}

.fc-title {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
}

.fc-val {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.6s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    position: relative;
    z-index: 1;
    padding: 0 32px;
    margin-top: -30px;
    margin-bottom: 40px;
}

.trust-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-right: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.trust-icon {
    font-size: 18px;
    color: var(--accent);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

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

/* ============================================
   CASINO CARDS SECTION
   ============================================ */
.casinos-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    border-color: var(--accent);
    font-weight: 700;
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.casino-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(16px);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-accent);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.casino-card:hover .card-glow {
    opacity: 1;
}

.card-rank {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.rank-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-mono);
}

.rank-badge {
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

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

.card-logo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}

.card-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.card-license {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.star {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.15);
}

.star.filled {
    color: var(--accent);
}

.star.half {
    color: var(--accent);
    opacity: 0.5;
}

.rating-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
}

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

.card-features {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.card-footer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.card-cta {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-cta:hover {
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
    color: var(--primary-deep);
}

.card-details-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.card-details-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Comparison Table */
.comparison-table-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.comparison-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

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

.comparison-table th {
    text-align: left;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--glass-border-accent);
    white-space: nowrap;
}

.comparison-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
}

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

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.table-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 13px;
}

.check-yes {
    color: #22c55e;
    font-weight: 600;
}

.check-no {
    color: var(--text-muted);
    font-weight: 500;
}

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

/* ============================================
   ANALYTICS SECTION
   ============================================ */
.analytics-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.analytics-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.analytics-card:hover {
    border-color: var(--glass-border-accent);
    box-shadow: var(--shadow-md), 0 0 30px rgba(251, 191, 36, 0.08);
}

.analytics-card-wide {
    grid-column: span 2;
}

.analytics-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.analytics-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.analytics-badge {
    padding: 4px 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

/* Bar Chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-group {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}

.bar-track {
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius-sm);
    background: var(--bar-color, var(--accent));
    width: 0%;
    transition: width 1.2s var(--ease-out-expo);
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.2));
    border-radius: var(--radius-sm);
}

.bar-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
}

/* Big Number */
.analytics-big-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-mono);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.analytics-trend {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.analytics-trend-up {
    color: #22c55e;
}

.analytics-trend-up span {
    font-size: 11px;
}

.analytics-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    opacity: 0.6;
    margin-top: 8px;
}

/* Donut Chart */
.analytics-donut-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.donut-chart {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-segment {
    transition: stroke-dasharray 1.5s var(--ease-out-expo);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Image Analytics Card */
.analytics-img-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 240px;
}

.analytics-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.analytics-img-overlay {
    position: relative;
    z-index: 1;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(13, 1, 24, 0.9), transparent);
}

.analytics-img-overlay h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.analytics-img-overlay p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 500px;
}

/* ============================================
   WHEEL GAME SECTION
   ============================================ */
.game-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.wheel-game-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    justify-items: center;
}

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

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    color: var(--accent);
    z-index: 10;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.5));
    line-height: 1;
}

#wheel-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.2), 0 0 120px rgba(168, 85, 247, 0.15);
}

.wheel-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
    transition: all 0.3s var(--ease-out-expo);
    letter-spacing: 0.05em;
    user-select: none;
}

.wheel-center-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
}

.wheel-center-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wheel-result-panel {
    width: 100%;
    max-width: 400px;
}

.result-display {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(16px);
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.result-placeholder {
    text-align: center;
}

.result-icon {
    font-size: 40px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.result-placeholder p {
    color: var(--text-tertiary);
    font-size: 15px;
}

.result-win {
    text-align: center;
}

.result-win-title {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.result-win-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 4px;
}

.result-win-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.wheel-score-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.score-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(12px);
}

.score-label {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.score-value {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-mono);
}

.wheel-side-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
    opacity: 0.7;
}

.game-disclaimer {
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-md);
    text-align: center;
}

.game-disclaimer p {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.security-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    text-align: center;
}

.security-card:hover {
    border-color: var(--glass-border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.security-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.security-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.security-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    backdrop-filter: blur(16px);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    min-height: 16px;
}

.form-consent {
    margin-top: 24px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

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

.form-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-deep);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
}

.contact-info-icon {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.1);
    border-radius: var(--radius-sm);
}

.contact-info-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-responsible-gaming {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

.contact-responsible-gaming h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-responsible-gaming p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.responsible-links {
    display: flex;
    gap: 16px;
}

.responsible-links a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.responsible-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-color: var(--glass-border-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    background: rgba(13, 1, 24, 0.6);
    backdrop-filter: blur(16px);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 48px 32px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.footer-links-group h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-group a,
.footer-links-group p {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.footer-bottom-right p {
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer-affiliate-disclosure {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.footer-affiliate-disclosure p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-affiliate-disclosure strong {
    color: var(--text-tertiary);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 5, 51, 0.95), rgba(45, 10, 78, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideUp 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.modal-content .modal-license {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-content .modal-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-content .modal-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-content .modal-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.modal-content .modal-link {
    display: inline-flex;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-content .modal-link:hover {
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
    color: var(--primary-deep);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-main {
    padding-top: var(--header-height);
}

.legal-hero {
    padding: 80px 32px 60px;
    text-align: center;
}

.legal-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    margin-top: 16px;
}

.legal-hero p {
    font-size: 15px;
    color: var(--text-secondary);
}

.legal-content-section {
    padding: 0 32px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(16px);
}

.legal-toc {
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.legal-toc h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.legal-toc ol {
    padding-left: 20px;
}

.legal-toc li {
    margin-bottom: 6px;
}

.legal-toc a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.legal-article section {
    margin-bottom: 36px;
}

.legal-article h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-article p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-article ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-article li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}

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

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

/* Legal Table */
.legal-table-wrapper {
    overflow-x: auto;
    margin: 16px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.legal-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 2px solid var(--glass-border-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
}

/* Legal Highlight Box */
.legal-highlight-box {
    padding: 24px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
    margin: 16px 0;
    text-align: center;
}

.legal-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: var(--primary-deep);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

/* Legal Info Box */
.legal-info-box {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.legal-info-box h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.legal-info-box ul {
    list-style: none;
    padding: 0;
}

.legal-info-box li {
    padding: 4px 0;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.gdpr-right-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.3s ease;
}

.gdpr-right-card:hover {
    border-color: var(--glass-border-accent);
    background: rgba(255, 255, 255, 0.06);
}

.gdpr-right-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--accent);
}

.gdpr-right-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.gdpr-right-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.2); }
    50% { box-shadow: 0 0 60px rgba(251, 191, 36, 0.4); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

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

/* Particle */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card-1 {
        right: -10px;
    }

    .floating-card-2 {
        left: -10px;
    }

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

    .analytics-card-wide {
        grid-column: span 1;
    }

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

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

    .wheel-game-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wheel-wrapper {
        margin: 0 auto;
    }

    .wheel-result-panel {
        max-width: 100%;
    }
}

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

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 20px);
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .trust-container {
        flex-direction: column;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

    .wheel-center-btn {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }

    .legal-card {
        padding: 24px;
    }

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

    .bar-group {
        grid-template-columns: 70px 1fr 40px;
    }

    .bar-label {
        font-size: 11px;
    }

    .age-modal-card {
        padding: 32px 24px;
    }

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

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-section {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .comparison-table-wrapper {
        padding: 20px 16px;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

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

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    body {
        background: white;
        color: black;
    }

    .main-header,
    .age-modal-overlay,
    .cookie-banner,
    .hero-particles,
    .hero-grid-bg,
    .mobile-nav-overlay {
        display: none !important;
    }

    .legal-card {
        background: white;
        border: 1px solid #ccc;
    }
}
```

```js