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

:root {
    /* Primary Palette */
    --color-primary: #ef4444;
    --color-primary-dark: #dc2626;
    --color-primary-light: #fca5a5;
    --color-secondary: #fbbf24;
    --color-secondary-dark: #f59e0b;
    --color-secondary-light: #fde68a;
    --color-accent: #3b82f6;
    --color-accent-dark: #2563eb;
    --color-accent-light: #93c5fd;

    /* Neutrals */
    --color-bg: #0f0f14;
    --color-bg-alt: #16161e;
    --color-bg-card: #1c1c28;
    --color-bg-elevated: #22222f;
    --color-surface: #2a2a3a;
    --color-border: #333348;
    --color-text: #e8e8f0;
    --color-text-muted: #9ca3af;
    --color-text-dim: #6b7280;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Extras */
    --color-green: #10b981;
    --color-purple: #8b5cf6;
    --color-orange: #f97316;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
    --shadow-glow-red: 0 0 30px rgba(239,68,68,0.3);
    --shadow-glow-blue: 0 0 30px rgba(59,130,246,0.3);
    --shadow-glow-yellow: 0 0 30px rgba(251,191,36,0.3);

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 500;
    --z-modal: 1000;
    --z-toast: 1500;
}

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

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

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

body.no-scroll {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

/* ============================================
   GEOMETRIC PATTERN BACKGROUNDS
   ============================================ */

.geo-pattern {
    background-image:
        linear-gradient(30deg, var(--color-border) 12%, transparent 12.5%, transparent 87%, var(--color-border) 87.5%, var(--color-border)),
        linear-gradient(150deg, var(--color-border) 12%, transparent 12.5%, transparent 87%, var(--color-border) 87.5%, var(--color-border)),
        linear-gradient(30deg, var(--color-border) 12%, transparent 12.5%, transparent 87%, var(--color-border) 87.5%, var(--color-border)),
        linear-gradient(150deg, var(--color-border) 12%, transparent 12.5%, transparent 87%, var(--color-border) 87.5%, var(--color-border)),
        linear-gradient(60deg, rgba(51,51,72,0.5) 25%, transparent 25.5%, transparent 75%, rgba(51,51,72,0.5) 75%, rgba(51,51,72,0.5)),
        linear-gradient(60deg, rgba(51,51,72,0.5) 25%, transparent 25.5%, transparent 75%, rgba(51,51,72,0.5) 75%, rgba(51,51,72,0.5));
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
}

/* Memphis-style dot pattern */
.memphis-dots {
    background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px),
                      radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

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

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity var(--transition-slow);
}

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

.age-gate__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
}

.age-gate__modal {
    position: relative;
    background: var(--color-bg-card);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 520px;
    width: 90%;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-glow-red);
    animation: ageModalIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes ageModalIn {
    from {
        transform: scale(0.8) rotate(-2deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.age-gate__geo-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.age-shape {
    position: absolute;
    opacity: 0.08;
}

.age-shape--triangle {
    top: -20px;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--color-primary);
    transform: rotate(15deg);
}

.age-shape--circle {
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-accent);
}

.age-shape--hex {
    top: 50%;
    right: -40px;
    width: 80px;
    height: 46px;
    background: var(--color-secondary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.age-shape--square {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    transform: rotate(45deg);
}

.age-gate__content {
    position: relative;
    z-index: 2;
}

.age-gate__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-glow-red);
    border: 3px solid rgba(255,255,255,0.2);
}

.age-gate__title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.age-gate__text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.5;
}

.age-gate__question {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

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

.age-gate__btn {
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    border: 2px solid transparent;
}

.age-gate__btn--yes {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.age-gate__btn--yes:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-red);
}

.age-gate__btn--no {
    background: transparent;
    color: var(--color-text-muted);
    border-color: var(--color-border);
}

.age-gate__btn--no:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.age-gate__disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-toast);
    background: var(--color-bg-card);
    border-top: 2px solid var(--color-accent);
    padding: var(--space-lg) 0;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-consent__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.cookie-consent__text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.cookie-consent__icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-consent__text strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--color-white);
    font-size: 1rem;
}

.cookie-consent__text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

.cookie-consent__text a:hover {
    color: var(--color-accent-light);
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

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

.cookie-btn--accept:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.cookie-btn--essential {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

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

.cookie-btn--settings {
    background: transparent;
    color: var(--color-text-muted);
    border-color: transparent;
}

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

.cookie-settings-panel {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.cookie-setting-row {
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text);
}

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 15, 20, 0.98);
    box-shadow: var(--shadow-lg);
}

.header__geo-bar {
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-primary) 0%,
        var(--color-primary) 33%,
        var(--color-secondary) 33%,
        var(--color-secondary) 66%,
        var(--color-accent) 66%,
        var(--color-accent) 100%
    );
    position: relative;
    overflow: hidden;
}

.geo-bar-pattern {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.15) 20px,
        rgba(255,255,255,0.15) 22px
    );
    animation: geoBarSlide 20s linear infinite;
}

@keyframes geoBarSlide {
    to { transform: translateX(50%); }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.logo-geo {
    position: relative;
    width: 36px;
    height: 36px;
}

.logo-triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 32px solid var(--color-primary);
    transition: transform var(--transition-base);
}

.logo-circle {
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-secondary);
    border: 2px solid var(--color-bg);
    transition: transform var(--transition-base);
}

.nav__logo:hover .logo-triangle {
    transform: rotate(10deg);
}

.nav__logo:hover .logo-circle {
    transform: scale(1.2);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
}

.logo-accent {
    color: var(--color-primary);
}

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

.nav__link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav__link:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.05);
}

.nav__link:hover::after {
    width: 60%;
}

.nav__link i {
    font-size: 0.8rem;
    color: var(--color-primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 10;
}

.nav__toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: var(--space-4xl);
    overflow: hidden;
    background: var(--color-bg);
}

.hero__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0;
    animation: heroShapeIn 1s ease forwards;
}

.hero-shape--1 {
    top: 10%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--color-primary);
    opacity: 0.06;
    animation-delay: 0.2s;
    animation-name: heroShapeFloat;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

.hero-shape--2 {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.05;
    animation-delay: 0.4s;
}

.hero-shape--3 {
    bottom: 20%;
    left: 8%;
    width: 80px;
    height: 46px;
    background: var(--color-secondary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.06;
    animation-delay: 0.6s;
}

.hero-shape--4 {
    top: 60%;
    right: 5%;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    transform: rotate(45deg);
    opacity: 0.05;
    animation-delay: 0.8s;
}

.hero-shape--5 {
    top: 40%;
    left: 15%;
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    opacity: 0.08;
    animation-delay: 1s;
}

.hero-shape--6 {
    bottom: 30%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--color-accent);
    transform: rotate(180deg);
    opacity: 0.04;
    animation-delay: 1.2s;
}

.hero-shape--7 {
    top: 75%;
    left: 40%;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.06;
    animation-delay: 1.4s;
}

.hero-shape--8 {
    top: 15%;
    left: 45%;
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-primary);
    transform: rotate(45deg);
    opacity: 0.06;
    animation-delay: 0.3s;
}

.hero-shape--9 {
    top: 50%;
    left: 60%;
    width: 20px;
    height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    opacity: 0.08;
    animation-delay: 0.7s;
}

.hero-shape--10 {
    bottom: 10%;
    right: 35%;
    width: 70px;
    height: 40px;
    background: var(--color-accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.04;
    animation-delay: 1.6s;
}

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

@keyframes heroShapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.08; }
}

.hero__pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__text-block {
    animation: heroTextIn 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-geo {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

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

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.hero__cta-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn--geo {
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

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

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

.btn--secondary {
    background: var(--color-secondary);
    color: var(--color-black);
}

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

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

.btn--accent:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-border);
}

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--card {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Hero Dashboard */
.hero__dashboard {
    position: relative;
    animation: heroDashIn 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes heroDashIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.dashboard-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dashboard-card--main {
    box-shadow: var(--shadow-xl);
}

.dashboard-card__header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
}

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

.dashboard-card__dot--red { background: var(--color-primary); }
.dashboard-card__dot--yellow { background: var(--color-secondary); }
.dashboard-card__dot--green { background: var(--color-green); }

.dashboard-card__title-bar {
    margin-left: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.dashboard-card__body {
    padding: var(--space-lg);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.mini-chart__bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: barGrow 1.2s ease forwards;
    animation-delay: calc(var(--bar-index, 0) * 0.1s + 0.8s);
    transform-origin: bottom;
}

.mini-chart__bar:nth-child(2) { background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark)); }
.mini-chart__bar:nth-child(3) { background: linear-gradient(180deg, var(--color-secondary), var(--color-secondary-dark)); }
.mini-chart__bar:nth-child(4) { background: linear-gradient(180deg, var(--color-green), #059669); }
.mini-chart__bar:nth-child(5) { background: linear-gradient(180deg, var(--color-purple), #7c3aed); }
.mini-chart__bar:nth-child(6) { background: linear-gradient(180deg, var(--color-orange), #ea580c); }

.mini-chart__bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--color-text-dim);
    white-space: nowrap;
    font-family: var(--font-mono);
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

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

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

.stat-item__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

.stat-item__label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-card--small {
    position: absolute;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.dashboard-card--float1 {
    top: -20px;
    right: -10px;
    animation: float1 4s ease-in-out infinite;
}

.dashboard-card--float2 {
    bottom: 20px;
    left: -20px;
    animation: float2 5s ease-in-out infinite;
}

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

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

.float-stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

.float-stat i {
    color: var(--color-green);
}

/* Hero scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--color-text-dim);
    font-size: 1.2rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ============================================
   TICKER
   ============================================ */

.ticker {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    padding: 14px 0;
}

.ticker__inner {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.ticker__item i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.ticker__divider {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

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

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

.section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-light);
    margin-bottom: var(--space-md);
}

.section-header__tag--light {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--color-accent-light);
}

.tag-diamond {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    transform: rotate(45deg);
}

.tag-hex {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.tag-circle {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.tag-star {
    width: 10px;
    height: 10px;
    background: var(--color-secondary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.tag-envelope {
    width: 10px;
    height: 8px;
    background: var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 65%, 0 100%);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-header__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

.section-header__desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   CASINO SECTION
   ============================================ */

.casinos {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.section-geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.geo-bg-shape {
    position: absolute;
    opacity: 0.03;
}

.geo-bg-shape--1 {
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    border: 40px solid var(--color-primary);
    border-radius: 50%;
}

.geo-bg-shape--2 {
    bottom: 5%;
    left: -5%;
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid var(--color-accent);
}

.geo-bg-shape--3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 200px;
    height: 200px;
    border: 30px solid var(--color-secondary);
}

/* Casino Filters */
.casino-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border: 2px solid var(--color-border);
    background: var(--color-bg-card);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

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

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

/* Casino Card */
.casino-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: cardIn 0.6s ease forwards;
}

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

@keyframes cardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: var(--shadow-xl), var(--shadow-glow-red);
}

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

.casino-card__rank {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-white);
    transform: rotate(-3deg);
}

.rank-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-dim);
    margin-top: 2px;
}

.casino-card__geo-accent {
    height: 4px;
    width: 100%;
}

.casino-card__geo-accent--gold { background: linear-gradient(90deg, var(--color-secondary), var(--color-primary)); }
.casino-card__geo-accent--blue { background: linear-gradient(90deg, var(--color-accent), var(--color-primary)); }
.casino-card__geo-accent--red { background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)); }
.casino-card__geo-accent--yellow { background: linear-gradient(90deg, var(--color-secondary), var(--color-accent)); }
.casino-card__geo-accent--green { background: linear-gradient(90deg, var(--color-green), var(--color-accent)); }
.casino-card__geo-accent--purple { background: linear-gradient(90deg, var(--color-purple), var(--color-primary)); }

.casino-card__header {
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    display: flex;
    justify-content: center;
    position: relative;
}

.casino-card__logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo-shape {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    border-radius: var(--radius-lg);
    position: relative;
}

.casino-logo-shape::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: inherit;
    border: 2px dashed rgba(255,255,255,0.1);
}

.casino-logo-shape--senator {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.casino-logo-shape--lutrija {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 50%;
}

.casino-logo-shape--vegas {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.casino-logo-shape--germania {
    background: linear-gradient(135deg, var(--color-green), #059669);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.casino-logo-shape--psk {
    background: linear-gradient(135deg, var(--color-purple), #7c3aed);
    border-radius: var(--radius-lg);
    transform: rotate(10deg);
}

.casino-logo-shape--arena {
    background: linear-gradient(135deg, var(--color-orange), #ea580c);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.casino-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.casino-card__badge--top {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-black);
}

.casino-card__body {
    padding: 0 var(--space-lg) var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-card__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.casino-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.rating-bar {
    flex: 1;
    height: 6px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    width: var(--rating-width);
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.rating-number {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 700;
    white-space: nowrap;
}

.casino-card__stars {
    text-align: center;
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
}

.casino-card__stars .fas.fa-star,
.casino-card__stars .fas.fa-star-half-alt {
    color: var(--color-secondary);
}

.casino-card__stars .far.fa-star {
    color: var(--color-surface);
}

.casino-card__desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    flex: 1;
}

.casino-card__tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.tag i {
    font-size: 0.65rem;
    color: var(--color-primary);
}

.casino-card__license {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.78rem;
    color: var(--color-green);
    font-weight: 500;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.casino-card__license i {
    font-size: 0.85rem;
}

.casino-card__footer {
    padding: 0 var(--space-lg) var(--space-lg);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-primary) 0px,
        var(--color-primary) 20px,
        transparent 20px,
        transparent 30px,
        var(--color-secondary) 30px,
        var(--color-secondary) 50px,
        transparent 50px,
        transparent 60px,
        var(--color-accent) 60px,
        var(--color-accent) 80px,
        transparent 80px,
        transparent 90px
    );
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    box-shadow: var(--shadow-lg);
}

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

.comparison-table__th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    background: var(--color-bg-elevated);
    border-bottom: 2px solid var(--color-border);
    white-space: nowrap;
}

.comparison-table__th i {
    color: var(--color-primary);
    margin-right: 4px;
}

.comparison-table__row {
    transition: background var(--transition-fast);
}

.comparison-table__row:hover {
    background: rgba(239, 68, 68, 0.05);
}

.comparison-table__row--highlight {
    background: rgba(251, 191, 36, 0.05);
}

.comparison-table__row--highlight:hover {
    background: rgba(251, 191, 36, 0.08);
}

.comparison-table__td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text);
}

.comparison-table__td--name {
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

.comparison-table__td--name i {
    color: var(--color-secondary);
    margin-right: 6px;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--color-surface);
    color: var(--color-text-muted);
}

.rank-badge--gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--color-black);
}

.rank-badge--silver {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: var(--color-white);
}

.rank-badge--bronze {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: var(--color-white);
}

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

.table-rating__score {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-secondary);
    min-width: 28px;
}

.table-rating__bar {
    flex: 1;
    height: 6px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
    min-width: 60px;
}

.table-rating__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-green);
    white-space: nowrap;
}

.table-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.table-link:hover {
    color: var(--color-accent-light);
}

.comparison-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
}

.comparison-disclaimer i {
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.comparison-disclaimer p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================
   ANALYTICS SECTION
   ============================================ */

.analytics {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.analytics__geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.analytics-shape {
    position: absolute;
    opacity: 0.03;
}

.analytics-shape--1 {
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.analytics-shape--2 {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 60px solid var(--color-primary);
}

.analytics-shape--3 {
    top: 40%;
    left: 50%;
    width: 200px;
    height: 115px;
    background: var(--color-secondary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

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

.analytics-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.analytics-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-lg);
}

.analytics-card__header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.analytics-card__header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.analytics-card__header h3 i {
    color: var(--color-accent);
}

.analytics-card__badge {
    padding: 4px 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent-light);
    font-family: var(--font-mono);
}

.analytics-card__body {
    padding: var(--space-xl);
}

/* Chart bars */
.chart-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.chart-bar-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.chart-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 70px;
    font-family: var(--font-mono);
}

.chart-bar-wrap {
    flex: 1;
    height: 28px;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    background: var(--bar-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: var(--space-sm);
    width: 0;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chart-bar.animated {
    width: calc(var(--data-width) * 1%);
}

.chart-bar__value {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
}

/* Donut Chart */
.analytics-card--donut .analytics-card__body {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.donut-chart {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

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

.donut-segment {
    transition: stroke-dasharray 1s ease;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-center__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    letter-spacing: 2px;
}

.donut-center__label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.donut-legend__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-text);
}

.donut-legend__color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Metrics Grid */
.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-fast);
}

.metric-item:hover {
    transform: translateY(-2px);
}

.metric-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.metric-item__icon--red {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-primary);
}

.metric-item__icon--blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-accent);
}

.metric-item__icon--yellow {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-secondary);
}

.metric-item__icon--green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-green);
}

.metric-item__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-white);
    letter-spacing: 1px;
    line-height: 1;
}

.metric-item__label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* License Info */
.license-info {
    text-align: center;
}

.license-info__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: var(--color-green);
}

.license-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.license-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.license-info__list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.license-info__list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    color: var(--color-text);
}

.license-info__list li i {
    color: var(--color-green);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================
   GAME SECTION - SPIN THE WHEEL
   ============================================ */

.game-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.game-section__geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.game-geo {
    position: absolute;
    opacity: 0.04;
}

.game-geo--1 {
    top: -50px;
    left: 20%;
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.game-geo--2 {
    bottom: -30px;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--color-primary);
}

.game-geo--3 {
    top: 50%;
    left: -50px;
    width: 120px;
    height: 120px;
    background: var(--color-accent);
    transform: rotate(45deg);
}

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

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

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 3rem;
    color: var(--color-primary);
    filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.5));
}

.wheel-outer-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    box-shadow: var(--shadow-xl), inset 0 0 0 4px rgba(255,255,255,0.1);
}

#wheel-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.spin-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: var(--shadow-lg);
    z-index: 5;
    transition: all var(--transition-base);
}

.spin-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-glow-red);
}

.spin-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

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

.spin-button:disabled:hover {
    transform: translate(-50%, -50%) scale(1);
}

.wheel-result {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    min-width: 300px;
    text-align: center;
}

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

.wheel-result__content i {
    font-size: 2rem;
    color: var(--color-text-dim);
}

.wheel-result__content p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.wheel-result__content.winner i {
    color: var(--color-secondary);
    animation: winPulse 0.5s ease;
}

.wheel-result__content.winner p {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.wheel-disclaimer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    max-width: 500px;
}

.wheel-disclaimer i {
    color: var(--color-accent);
    flex-shrink: 0;
}

.wheel-disclaimer p {
    font-size: 0.78rem;
    color: var(--color-text-dim);
    line-height: 1.4;
}

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

.contact {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.contact__geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    opacity: 0.03;
}

.contact-shape--1 {
    top: 10%;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 50px solid var(--color-primary);
    border-radius: 50%;
}

.contact-shape--2 {
    bottom: -50px;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 210px solid var(--color-secondary);
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-content: start;
}

.contact-info__card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.contact-info__card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.contact-info__icon--blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-accent);
}

.contact-info__icon--yellow {
    background: rgba(251, 191, 36, 0.1);
    color: var(--color-secondary);
}

.contact-info__icon--green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
}

.contact-info__card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.contact-info__card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.contact-info__link {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
    word-break: break-all;
}

.contact-info__link:hover {
    color: var(--color-accent-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

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

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.error {
    border-color: var(--color-primary);
}

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.form-checkbox input[type="checkbox"] {
    display: none;
}

.form-checkbox__mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.form-checkbox__mark::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 2px;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.form-checkbox input:checked + .form-checkbox__mark {
    border-color: var(--color-accent);
}

.form-checkbox input:checked + .form-checkbox__mark::after {
    opacity: 1;
    transform: scale(1);
}

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

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

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-green);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--color-primary);
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */

.responsible-gaming {
    padding: var(--space-2xl) 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.responsible-gaming__inner {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.responsible-gaming__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.responsible-gaming__content {
    flex: 1;
}

.responsible-gaming__content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.responsible-gaming__content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.responsible-gaming__links {
    display: flex;
    gap: var(--space-md);
}

.responsible-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

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

.responsible-gaming__badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.2);
}

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

.footer {
    background: var(--color-bg-alt);
    padding-top: var(--space-4xl);
    position: relative;
}

.footer__geo-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
    pointer-events: none;
}

.footer-triangle {
    position: absolute;
    top: -30px;
    width: 0;
    height: 0;
    opacity: 0.05;
}

.footer-triangle--1 {
    left: 10%;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 60px solid var(--color-primary);
}

.footer-triangle--2 {
    left: 50%;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 50px solid var(--color-secondary);
    transform: translateX(-50%);
}

.footer-triangle--3 {
    right: 10%;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 55px solid var(--color-accent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--color-border);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer__desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
}

.footer__links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer__links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

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

.footer__links li a,
.footer__links li span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.footer__links li a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer__links li i {
    font-size: 0.7rem;
    color: var(--color-text-dim);
}

.footer__bottom {
    padding: var(--space-xl) 0;
}

.footer__disclaimer {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
}

.footer__disclaimer p {
    font-size: 0.78rem;
    color: var(--color-text-dim);
    line-height: 1.6;
}

.footer__disclaimer i {
    color: var(--color-primary);
    margin-right: 4px;
}

.footer__copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copy p {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotate(45deg);
    transition: all var(--transition-base);
    border: 2px solid rgba(255,255,255,0.2);
}

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

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-red);
}

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

@media (max-width: 1200px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

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

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

    .hero__cta-group {
        justify-content: center;
    }

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

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

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

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

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

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

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

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-card);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        box-shadow: var(--shadow-xl);
        border-left: 1px solid var(--color-border);
        align-items: stretch;
        gap: var(--space-xs);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: var(--space-3xl);
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

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

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

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

    .responsible-gaming__inner {
        flex-direction: column;
        text-align: center;
    }

    .responsible-gaming__links {
        justify-content: center;
    }

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

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

    .analytics-card--donut .analytics-card__body {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .age-gate__modal {
        padding: var(--space-xl);
    }

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

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

    .spin-button {
        width: 65px;
        height: 65px;
        font-size: 0.85rem;
    }

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

    .dashboard-card--float1,
    .dashboard-card--float2 {
        display: none;
    }
}

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

.legal-page {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
}

.legal-page .container {
    max-width: 900px;
}

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

.legal-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.legal-header__subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.legal-header__date {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
}

.legal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h2 i {
    color: var(--color-primary);
    font-size: 1rem;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.legal-content li {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.legal-content ul li::marker {
    color: var(--color-primary);
}

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

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

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

.legal-highlight {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.legal-highlight p {
    margin-bottom: 0;
}

.legal-contact-box {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.legal-contact-box h3 {
    margin-top: 0;
}

/* Accessibility - Focus visible */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

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

    .ticker__inner {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}
