/* ============================================================
   TOWER RUSH - COSMIC / SPACE THEME
   Deep space backgrounds, nebula gradients, starfield effects
   Self-hosted fonts: Inter + Orbitron (NO Google Fonts)
   ============================================================ */

/* ==========================================================
   0. SELF-HOSTED FONTS
   ========================================================== */

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================
   1. CSS VARIABLES
   ========================================================== */

:root {
    /* Primary Palette */
    --primary: #7b2ff7;
    --primary-light: #9b5fff;
    --primary-dark: #5a10d0;
    --primary-rgb: 123, 47, 247;

    /* Secondary Palette */
    --secondary: #ff2d95;
    --secondary-light: #ff5fb0;
    --secondary-dark: #d0106e;
    --secondary-rgb: 255, 45, 149;

    /* Accent */
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --accent-rgb: 59, 130, 246;

    /* Cosmic extras */
    --nebula-teal: #06d6a0;
    --nebula-orange: #ff6b35;
    --star-gold: #fbbf24;
    --star-gold-rgb: 251, 191, 36;
    --warning: #ef4444;
    --warning-light: #fca5a5;
    --success: #22c55e;

    /* Backgrounds */
    --bg-primary: #0a0015;
    --bg-secondary: #0d0028;
    --bg-tertiary: #120035;
    --bg-card: rgba(15, 5, 40, 0.65);
    --bg-card-hover: rgba(25, 12, 55, 0.8);
    --bg-card-alt: rgba(20, 8, 50, 0.7);
    --bg-glass: rgba(20, 10, 50, 0.6);
    --bg-glass-strong: rgba(20, 10, 50, 0.85);

    /* Text */
    --text: #f0e6ff;
    --text-bright: #ffffff;
    --text-secondary: rgba(240, 230, 255, 0.7);
    --text-muted: rgba(240, 230, 255, 0.45);
    --text-faint: rgba(240, 230, 255, 0.25);

    /* Borders */
    --border-glow: rgba(123, 47, 247, 0.3);
    --border-hover: rgba(123, 47, 247, 0.55);
    --border-secondary: rgba(255, 45, 149, 0.25);
    --border-accent: rgba(59, 130, 246, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.06);

    /* Fonts */
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Orbitron', 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 100px;

    /* Border Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(123, 47, 247, 0.1);
    --shadow-md: 0 4px 20px rgba(123, 47, 247, 0.15);
    --shadow-lg: 0 8px 40px rgba(123, 47, 247, 0.2);
    --glow-purple: 0 0 30px rgba(123, 47, 247, 0.4);
    --glow-pink: 0 0 30px rgba(255, 45, 149, 0.3);
    --glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);
    --glow-combined: 0 0 20px rgba(123, 47, 247, 0.3), 0 0 50px rgba(255, 45, 149, 0.12);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s ease;
    --transition-cosmic: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Layout */
    --max-width: 1140px;
    --header-height: 70px;

    /* Z-index layers */
    --z-starfield: 0;
    --z-content: 2;
    --z-cards: 3;
    --z-header: 100;
    --z-mobile-menu: 150;
    --z-overlay: 200;
}

/* ==========================================================
   2. MODERN RESET & BASE
   ========================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
    scrollbar-color: var(--primary-dark) var(--bg-secondary);
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

html::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: var(--radius-pill);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(123, 47, 247, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255, 45, 149, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

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

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

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

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

button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-bright);
    letter-spacing: 0.02em;
}

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

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

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 600;
    color: var(--text-bright);
}

/* Selection */
::selection {
    background: rgba(123, 47, 247, 0.4);
    color: var(--text-bright);
}

::-moz-selection {
    background: rgba(123, 47, 247, 0.4);
    color: var(--text-bright);
}

/* ==========================================================
   3. STARFIELD CANVAS
   ========================================================== */

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-starfield);
    pointer-events: none;
}

.starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-starfield);
    pointer-events: none;
    opacity: 0.7;
}

/* CSS star dots fallback */
.star-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-starfield);
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: var(--radius-full);
    animation: starTwinkle 3s ease-in-out infinite alternate;
}

.star--large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.4);
}

.star--small {
    width: 1px;
    height: 1px;
    opacity: 0.5;
}

/* ==========================================================
   4. CONTAINER
   ========================================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: var(--z-content);
}

/* ==========================================================
   5. HEADER / NAVIGATION
   ========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 16px 0;
    background: rgba(10, 0, 21, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 47, 247, 0.15);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(10, 0, 21, 0.92);
    box-shadow: 0 4px 30px rgba(123, 47, 247, 0.2), 0 1px 0 rgba(123, 47, 247, 0.15);
    border-bottom-color: rgba(123, 47, 247, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

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

.logo-icon {
    color: var(--primary);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.5));
}

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

.logo span {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-pill);
    transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-bright);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: calc(var(--z-mobile-menu) + 10);
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: var(--space-md);
}

.lang-switcher a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--text-bright);
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
}

/* ==========================================================
   6. HERO SECTION
   ========================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-nebula {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(123, 47, 247, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 70% 50% at 80% 60%, rgba(255, 45, 149, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 1;
    animation: nebulaPulse 20s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 1;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(255, 45, 149, 0.2));
    border: 1px solid rgba(123, 47, 247, 0.4);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 20px;
    animation: starTwinkle 3s ease-in-out infinite alternate;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(var(--primary-rgb), 0.25));
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 400;
    color: var(--primary-light);
    margin-bottom: var(--space-md);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hero-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 620px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 1px solid rgba(123, 47, 247, 0.5);
    border-radius: var(--radius-pill);
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.cta-secondary:hover {
    background: rgba(123, 47, 247, 0.15);
    border-color: var(--primary);
    color: var(--text-bright);
    box-shadow: var(--glow-purple);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-bright);
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hero background image */
.hero-img {
    position: absolute;
    right: -80px;
    bottom: 40px;
    width: 420px;
    opacity: 0.3;
    border-radius: var(--radius);
    z-index: 1;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6), transparent 80%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6), transparent 80%);
}

/* Cosmic ring decorations */
.cosmic-ring {
    position: absolute;
    border-radius: var(--radius-full);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    animation: cosmicFloat 10s ease-in-out infinite;
    pointer-events: none;
}

.cosmic-ring--1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    border-color: rgba(var(--primary-rgb), 0.08);
    animation-duration: 12s;
}

.cosmic-ring--2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: -5%;
    border-color: rgba(var(--secondary-rgb), 0.06);
    animation-duration: 16s;
    animation-delay: -4s;
}

.cosmic-ring--3 {
    width: 200px;
    height: 200px;
    top: 35%;
    right: 10%;
    border-color: rgba(var(--accent-rgb), 0.08);
    animation-duration: 14s;
    animation-delay: -7s;
}

/* ==========================================================
   7. CTA BUTTONS
   ========================================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-size: 200% auto;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow:
        var(--glow-purple),
        var(--glow-pink),
        0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-cosmic);
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: var(--space-sm);
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 50px rgba(var(--primary-rgb), 0.5),
        0 0 80px rgba(var(--secondary-rgb), 0.25),
        0 8px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
    background-position: right center;
}

.cta-button:active {
    transform: translateY(0) scale(1.02);
}

/* Pulse animation variant */
.cta-button.pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

.cta-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* CTA container */
.cta-container {
    text-align: center;
    margin: var(--space-2xl) 0;
}

.cta-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
}

/* ==========================================================
   8. CONTENT SECTIONS
   ========================================================== */

.section {
    position: relative;
    padding: 100px 0;
    z-index: var(--z-content);
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(10, 0, 21, 0.5) 30%,
        rgba(10, 0, 21, 0.5) 70%,
        transparent 100%
    );
    z-index: -1;
    pointer-events: none;
}

/* Alternating section subtle backgrounds */
.section:nth-child(even)::before {
    background:
        radial-gradient(ellipse 70% 40% at 80% 50%, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(13, 0, 40, 0.5) 50%, transparent 100%);
}

.section:nth-child(odd)::before {
    background:
        radial-gradient(ellipse 60% 35% at 20% 50%, rgba(var(--secondary-rgb), 0.03) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(10, 0, 21, 0.5) 30%, rgba(10, 0, 21, 0.5) 70%, transparent 100%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: var(--space-md) auto 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-pill);
}

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-img {
    display: block;
    max-width: 600px;
    margin: 40px auto 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-glow);
    box-shadow: var(--glow-purple);
    transition: var(--transition-cosmic);
}

.section-img:hover {
    box-shadow: 0 0 50px rgba(var(--primary-rgb), 0.3);
    border-color: var(--border-hover);
}

/* Cosmic divider */
.cosmic-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-glow) 30%, var(--border-secondary) 50%, var(--border-glow) 70%, transparent 100%);
    margin: 0;
    border: none;
}

/* Section visibility for IntersectionObserver */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   9. GLASS CARDS
   ========================================================== */

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-cosmic);
}

/* Mouse-follow glow effect */
.glass-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.15), transparent 70%);
    border-radius: var(--radius-full);
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.glass-card:hover::before {
    opacity: 1;
}

/* Corner aurora glow */
.glass-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb), 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(var(--secondary-rgb), 0.08) 100%
    );
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover::after {
    opacity: 1;
}

.glass-card:hover {
    border-color: rgba(123, 47, 247, 0.5);
    box-shadow: 0 8px 40px rgba(123, 47, 247, 0.15);
    transform: translateY(-4px);
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.glass-card p:last-child {
    margin-bottom: 0;
}

.glass-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-bright);
    margin-bottom: 12px;
}

/* ==========================================================
   10. BONUS CARDS
   ========================================================== */

.bonus-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: var(--transition-cosmic);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(var(--secondary-rgb), 0.1) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.bonus-card:hover::after {
    opacity: 1;
}

.bonus-card:hover {
    border-color: rgba(var(--secondary-rgb), 0.5);
    transform: translateY(-4px);
    box-shadow: var(--glow-pink);
}

.bonus-card h3,
.bonus-card h4 {
    color: var(--text-bright);
    margin-bottom: var(--space-md);
}

.bonus-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================
   11. STRATEGY CARDS
   ========================================================== */

.strategy-card {
    position: relative;
    background: var(--bg-card-alt);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition-cosmic);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    border-radius: var(--radius-pill);
}

.strategy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(var(--accent-rgb), 0.08) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.strategy-card:hover::after {
    opacity: 1;
}

.strategy-card:hover {
    border-color: rgba(var(--accent-rgb), 0.4);
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

.strategy-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

/* Card feature icon */
.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.card-icon--pink {
    background: rgba(var(--secondary-rgb), 0.15);
    border-color: var(--border-secondary);
}

.card-icon--blue {
    background: rgba(var(--accent-rgb), 0.15);
    border-color: var(--border-accent);
}

/* ==========================================================
   12. CARD GRIDS / CONTENT GRIDS
   ========================================================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.content-img {
    margin-top: 20px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-cosmic);
}

.content-img:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow-purple);
}

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

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-2xl);
    align-items: start;
}

.sidebar-card {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

/* ==========================================================
   13. SPECS TABLE
   ========================================================== */

.specs-card {
    max-width: 700px;
    margin: 0 auto;
}

.specs-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border-glow);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table thead {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.25) 0%, rgba(var(--secondary-rgb), 0.12) 100%);
}

.specs-table thead th {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-bright);
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.3);
    white-space: nowrap;
}

.specs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(123, 47, 247, 0.15);
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: background var(--transition-fast);
}

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

.specs-table tr:hover td {
    background: rgba(var(--primary-rgb), 0.06);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--primary-light);
    width: 40%;
    white-space: nowrap;
}

.specs-table td:last-child {
    color: var(--text-secondary);
}

.specs-table tbody tr:nth-child(even) {
    background: rgba(var(--primary-rgb), 0.03);
}

.rating-badge {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ==========================================================
   14. STATS GRID
   ========================================================== */

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

.stat-card {
    position: relative;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-cosmic);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(var(--primary-rgb), 0.06) 25%, transparent 50%);
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(var(--primary-rgb), 0.4));
    text-shadow: none;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

/* ==========================================================
   15. PHASES GRID (Strategy)
   ========================================================== */

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.phase-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid;
}

.phase-header.conservateur { border-color: var(--accent); }
.phase-header.equilibre { border-color: var(--primary); }
.phase-header.agressif { border-color: var(--secondary); }

.phase-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.phase-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
}

.phase-result {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.phase-result.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.phase-result.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.bilan-card {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.15), rgba(255, 45, 149, 0.1));
    border-color: rgba(123, 47, 247, 0.4);
    text-align: center;
}

/* Strategies grid */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================================
   16. IFRAME / DEMO SECTION
   ========================================================== */

.demo-section {
    background: rgba(13, 0, 40, 0.6);
}

.game-iframe-section {
    position: relative;
    padding: var(--space-3xl) 0;
    z-index: var(--z-content);
}

.iframe-wrapper {
    position: relative;
    padding: 8px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(123, 47, 247, 0.5);
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.2);
    transition: box-shadow var(--transition-slow), border-color var(--transition);
}

.iframe-wrapper:hover {
    border-color: var(--border-hover);
    box-shadow:
        0 0 60px rgba(var(--primary-rgb), 0.3),
        0 0 100px rgba(var(--primary-rgb), 0.1),
        0 0 20px rgba(var(--secondary-rgb), 0.1);
}

/* Aurora border animation */
.iframe-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg,
        var(--primary) 0%,
        var(--secondary) 25%,
        var(--accent) 50%,
        var(--primary) 75%,
        var(--secondary) 100%
    );
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    z-index: -1;
    opacity: 0.4;
    filter: blur(4px);
}

.iframe-wrapper iframe {
    border-radius: var(--radius-sm);
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    background: var(--bg-primary);
}

.iframe-label {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================================
   17. TESTIMONIALS
   ========================================================== */

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

.testimonial-card {
    position: relative;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition-cosmic);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 30% at 80% 20%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 25% at 20% 80%, rgba(var(--secondary-rgb), 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--glow-combined);
}

.testimonial-stars {
    color: var(--star-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 8px rgba(var(--star-gold-rgb), 0.4);
}

.testimonial-stars .star-icon {
    color: var(--star-gold);
}

.testimonial-stars .star-icon.empty {
    color: var(--text-faint);
    text-shadow: none;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.25;
    position: absolute;
    top: -12px;
    left: -5px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-bright);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================
   18. FAQ ACCORDION
   ========================================================== */

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
}

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

.faq-item.active {
    border-color: var(--border-hover);
    border-left-color: var(--secondary);
    box-shadow: var(--glow-combined);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: none;
    border: none;
    color: var(--text-bright);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
    color: var(--primary-light);
    font-size: 0.8rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(var(--primary-rgb), 0.3);
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    text-decoration-color: var(--secondary);
    color: var(--secondary);
}

/* ==========================================================
   19. VERDICT / RATING SECTION
   ========================================================== */

.verdict-card {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.15), rgba(255, 45, 149, 0.1));
    border-color: rgba(123, 47, 247, 0.5);
    padding: 48px 40px;
}

.verdict-rating {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.4));
}

.verdict-rating span {
    font-size: 1.8rem;
    opacity: 0.6;
}

.verdict-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.verdict-img {
    max-width: 500px;
    margin: 0 auto 32px;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    transition: var(--transition-cosmic);
}

.verdict-img:hover {
    box-shadow: var(--glow-purple);
    border-color: var(--border-hover);
}

/* Rating display */
.rating-display {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--star-gold), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: var(--star-gold);
    font-size: 1.2rem;
}

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

/* ==========================================================
   20. RESPONSIBLE GAMING
   ========================================================== */

.responsible-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.responsible-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.responsible-gaming {
    position: relative;
    background: var(--bg-card-alt);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-left: 5px solid var(--warning);
    border-radius: var(--radius);
    padding: var(--space-2xl) var(--space-3xl);
    margin: var(--space-3xl) auto;
    max-width: var(--max-width);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.responsible-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(239, 68, 68, 0.03) 0%, transparent 70%);
    pointer-events: none;
    border-radius: inherit;
}

.responsible-gaming h2,
.responsible-gaming h3 {
    color: var(--warning);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.responsible-gaming p {
    position: relative;
    z-index: 1;
}

.helpline {
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    display: inline-block;
    color: var(--warning-light);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
}

.helpline:hover {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.phone-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.1);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0;
    text-shadow: 0 0 10px rgba(var(--secondary-rgb), 0.3);
    transition: var(--transition-fast);
}

.phone-number:hover {
    background: rgba(var(--secondary-rgb), 0.2);
    box-shadow: 0 0 15px rgba(var(--secondary-rgb), 0.2);
}

.responsible-gaming ul {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.responsible-gaming ul li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text);
}

.responsible-gaming ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--warning);
    border-radius: var(--radius-full);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}

/* ==========================================================
   21. FOOTER
   ========================================================== */

.site-footer {
    position: relative;
    z-index: var(--z-content);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(123, 47, 247, 0.2);
    background: rgba(10, 0, 21, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
    display: block;
    margin-bottom: 12px;
}

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

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4,
.footer-links-column h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.footer-col a,
.footer-links-column a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover,
.footer-links-column a:hover {
    color: var(--text);
    padding-left: 6px;
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

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

.footer-bottom {
    border-top: 1px solid rgba(123, 47, 247, 0.15);
    padding-top: 24px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-faint);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-faint);
    max-width: 600px;
    line-height: 1.5;
    text-align: right;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glow);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.3);
}

/* ==========================================================
   22. IMAGES
   ========================================================== */

.content-image {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin: var(--space-xl) 0;
    position: relative;
    border: 1px solid var(--border-glow);
    transition: var(--transition-cosmic);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease, transform var(--transition-slow);
}

.content-image img.loaded,
img.loaded {
    opacity: 1;
}

.content-image:hover img.loaded {
    transform: scale(1.02);
}

.content-image:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow-purple);
}

/* Image with cosmic glow frame */
.image-cosmic {
    position: relative;
}

.image-cosmic::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: calc(var(--radius) + 3px);
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    animation: gradientShift 5s ease-in-out infinite;
    z-index: -1;
    opacity: 0.35;
    filter: blur(2px);
    transition: opacity var(--transition);
}

.image-cosmic:hover::before {
    opacity: 0.65;
}

.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-sm);
}

/* Gallery grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.image-gallery .content-image {
    margin: 0;
}

/* Inline article images */
.article-image {
    max-width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glow);
    transition: var(--transition);
    opacity: 0;
}

.article-image.loaded {
    opacity: 1;
}

.article-image:hover {
    box-shadow: var(--glow-purple);
}

/* ==========================================================
   23. ANIMATIONS - KEYFRAMES
   ========================================================== */

/* Nebula Pulse - Background opacity shift */
@keyframes nebulaPulse {
    0% {
        opacity: 1;
        background-position: 0% 0%;
    }
    25% {
        opacity: 0.92;
        background-position: 15% 10%;
    }
    50% {
        opacity: 0.85;
        background-position: 30% 20%;
    }
    75% {
        opacity: 0.92;
        background-position: 15% 10%;
    }
    100% {
        opacity: 1;
        background-position: 0% 0%;
    }
}

/* Cosmic Float - Smooth floating motion with rotation */
@keyframes cosmicFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Star Twinkle - Opacity pulse */
@keyframes starTwinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

/* Glow Pulse - Box-shadow intensity */
@keyframes glowPulse {
    0% {
        box-shadow:
            0 0 20px rgba(var(--primary-rgb), 0.3),
            0 0 50px rgba(var(--primary-rgb), 0.1),
            0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 35px rgba(var(--primary-rgb), 0.5),
            0 0 80px rgba(var(--secondary-rgb), 0.2),
            0 4px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow:
            0 0 20px rgba(var(--primary-rgb), 0.3),
            0 0 50px rgba(var(--primary-rgb), 0.1),
            0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* CTA Pulse */
@keyframes ctaPulse {
    0% {
        box-shadow: var(--glow-purple), var(--glow-pink);
    }
    50% {
        box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.6), 0 0 40px rgba(var(--secondary-rgb), 0.4);
    }
    100% {
        box-shadow: var(--glow-purple), var(--glow-pink);
    }
}

/* Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Rotate slow - for cosmic ring decorations */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Slide in from bottom */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale in */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ripple for buttons */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Aurora shimmer */
@keyframes auroraShimmer {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(15deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

/* Orbit */
@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

/* Border glow */
@keyframes borderGlow {
    0% {
        border-color: rgba(var(--primary-rgb), 0.2);
    }
    50% {
        border-color: rgba(var(--primary-rgb), 0.5);
    }
    100% {
        border-color: rgba(var(--primary-rgb), 0.2);
    }
}

/* ==========================================================
   24. AOS INTEGRATION
   ========================================================== */

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom AOS-like fallback transitions */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-in"] {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

/* ==========================================================
   25. SECTION VISIBILITY (IntersectionObserver)
   ========================================================== */

.reveal-element {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered reveal for card grids */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   26. CONTENT-SPECIFIC COMPONENTS
   ========================================================== */

/* Steps / How-to */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
    padding-left: var(--space-3xl);
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
    border-radius: var(--radius-pill);
}

.step-item {
    position: relative;
}

.step-number {
    position: absolute;
    left: calc(-1 * var(--space-3xl) - 1px);
    top: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-light);
    box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.3);
    z-index: 2;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.step-item p {
    color: var(--text-muted);
}

/* Pros/Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.pros-list,
.cons-list {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pros-list {
    border-color: rgba(34, 197, 94, 0.3);
}

.cons-list {
    border-color: rgba(239, 68, 68, 0.3);
}

.pros-list h3 { color: var(--success); margin-bottom: var(--space-md); }
.cons-list h3 { color: var(--warning); margin-bottom: var(--space-md); }

.pros-list li,
.cons-list li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text);
}

.pros-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.cons-list li::before {
    content: '-';
    position: absolute;
    left: 2px;
    color: var(--warning);
    font-weight: 700;
}

/* Badges / Tags */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge--primary {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary-light);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.badge--secondary {
    background: rgba(var(--secondary-rgb), 0.2);
    color: var(--secondary-light);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
}

.badge--accent {
    background: rgba(var(--accent-rgb), 0.2);
    color: var(--accent-light);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
}

/* Notice box / Alert */
.notice-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.notice-box--warning {
    border-left-color: var(--warning);
}

.notice-box--info {
    border-left-color: var(--accent);
}

.notice-box h4 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.notice-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Blockquote cosmic */
blockquote {
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--text);
    position: relative;
}

blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Feature list horizontal */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-pill);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--transition-fast);
}

.feature-list li:hover {
    border-color: var(--border-hover);
    background: rgba(var(--primary-rgb), 0.1);
}

.check-icon {
    color: var(--success);
    font-weight: 700;
}

/* Age restriction badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 3px solid var(--warning);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warning);
    background: rgba(239, 68, 68, 0.1);
}

/* ==========================================================
   27. UTILITY CLASSES
   ========================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--accent-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

.glow-purple { box-shadow: var(--glow-purple); }
.glow-pink { box-shadow: var(--glow-pink); }
.glow-blue { box-shadow: var(--glow-blue); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }

.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================================
   28. MOBILE RESPONSIVE
   ========================================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .hero-img {
        width: 300px;
        right: -40px;
        opacity: 0.2;
    }

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

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

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

    .card-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

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

    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: relative;
        top: auto;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 0, 21, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: var(--transition);
        border-left: 1px solid var(--border-glow);
        z-index: var(--z-mobile-menu);
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        padding: var(--space-md);
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-menu a::after {
        display: none;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: var(--space-md);
        width: 100%;
        padding: var(--space-md) 0;
        border-top: 1px solid var(--border-glow);
    }

    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: calc(var(--z-mobile-menu) - 1);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Hero mobile */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

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

    .hero-img {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-intro {
        margin-bottom: 32px;
    }

    /* Cards */
    .card-grid,
    .card-grid-2,
    .card-grid-3 {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

    .glass-card,
    .bonus-card,
    .strategy-card {
        padding: 24px;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    /* Table */
    .specs-table-wrapper {
        font-size: 0.85rem;
    }

    /* Iframe */
    .iframe-wrapper {
        border-radius: var(--radius-sm);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
    }

    /* Verdict */
    .verdict-rating {
        font-size: 3rem;
    }

    .verdict-card {
        padding: 32px 24px;
    }

    /* CTA */
    .cta-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    /* Responsible gaming */
    .responsible-gaming {
        padding: var(--space-lg) var(--space-xl);
    }

    /* Pros/Cons */
    .pros-cons {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer-links {
        gap: var(--space-xl);
    }

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

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

    /* Cosmic rings hidden on mobile */
    .cosmic-ring {
        display: none;
    }

    /* Steps */
    .steps-container {
        padding-left: var(--space-2xl);
    }

    .step-number {
        left: calc(-1 * var(--space-2xl) - 1px);
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    /* Image gallery */
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 48px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

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

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.2rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

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

    .stat-card .stat-number {
        font-size: 1.6rem;
    }

    .stat-card .stat-label {
        font-size: 0.75rem;
    }

    /* Cards compact */
    .glass-card,
    .bonus-card,
    .strategy-card {
        padding: 20px;
        border-radius: var(--radius-sm);
    }

    /* Table */
    .specs-table td {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

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

    .specs-table-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to left, var(--bg-card), transparent);
        pointer-events: none;
        border-radius: 0 var(--radius) var(--radius) 0;
    }

    /* FAQ compact */
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 16px 14px;
        font-size: 0.9rem;
    }

    /* Verdict */
    .verdict-card {
        padding: 24px 16px;
    }

    .verdict-rating {
        font-size: 2.5rem;
    }

    /* CTA full width */
    .cta-button {
        width: 100%;
        max-width: 400px;
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    .cta-large {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

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

    /* Header compact */
    .header-inner {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.1rem;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-lg);
    }

    /* Responsible gaming */
    .responsible-gaming {
        padding: var(--space-md);
    }

    .phone-number {
        font-size: 1rem;
        display: block;
        text-align: center;
    }

    /* Feature list */
    .feature-list {
        gap: var(--space-sm);
    }

    .feature-list li {
        font-size: 0.8rem;
        padding: 4px var(--space-md);
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

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

    .verdict-rating {
        font-size: 2rem;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    :root {
        --max-width: 1280px;
    }
}

/* ==========================================================
   29. REDUCED MOTION
   ========================================================== */

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

    html {
        scroll-behavior: auto;
    }

    .hero-nebula,
    .hero::before {
        animation: none;
    }

    .cta-button.pulse {
        animation: none;
    }

    .cosmic-ring {
        animation: none;
    }

    .hero-badge {
        animation: none;
    }

    .hero h1 {
        animation: none;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    .reveal-element,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .section-animate {
        opacity: 1;
        transform: none;
    }

    .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================
   30. PRINT STYLES
   ========================================================== */

@media print {
    body {
        background: #fff;
        color: #000;
    }

    .site-header,
    .menu-toggle,
    .cta-button,
    .cta-secondary,
    .starfield-canvas,
    #starfield,
    .star-layer,
    .cosmic-ring,
    .site-footer,
    .iframe-wrapper,
    .game-iframe-section,
    .demo-section,
    .hero-nebula,
    .hero-badge {
        display: none !important;
    }

    .glass-card,
    .bonus-card,
    .strategy-card,
    .testimonial-card,
    .stat-card,
    .verdict-card,
    .responsible-card {
        border: 1px solid #ccc;
        background: #fff;
        backdrop-filter: none;
        box-shadow: none;
    }

    .section {
        background: none !important;
        padding: 1rem 0;
    }

    .section::before {
        display: none;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000;
        -webkit-text-fill-color: #000;
        background: none;
    }

    .hero {
        min-height: auto;
        padding: 1rem 0;
    }

    .hero h1,
    .section-title,
    .verdict-rating,
    .stat-number,
    .text-gradient,
    .text-gradient-blue {
        background: none;
        -webkit-text-fill-color: #000;
        color: #000;
    }

    p {
        color: #333;
    }
}
