/* ============================================
   Galaxy Attack: Shooting Game - Aurora Theme
   styles.css
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #4ade80;
    --primary-dark: #22c55e;
    --primary-glow: rgba(74, 222, 128, 0.3);
    --secondary: #818cf8;
    --secondary-dark: #6366f1;
    --secondary-glow: rgba(129, 140, 248, 0.3);
    --accent: #c084fc;
    --accent-dark: #a855f7;
    --accent-glow: rgba(192, 132, 252, 0.3);

    --bg-deep: #050a12;
    --bg-dark: #0a1020;
    --bg-card: rgba(15, 23, 42, 0.7);
    --bg-card-hover: rgba(20, 30, 55, 0.85);
    --bg-glass: rgba(15, 23, 42, 0.5);

    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-link: #4ade80;

    --border-subtle: rgba(74, 222, 128, 0.1);
    --border-card: rgba(129, 140, 248, 0.15);

    --font-display: 'Exo 2', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-glow-primary: 0 0 30px rgba(74, 222, 128, 0.15), 0 0 60px rgba(74, 222, 128, 0.05);
    --shadow-glow-secondary: 0 0 30px rgba(129, 140, 248, 0.15), 0 0 60px rgba(129, 140, 248, 0.05);
    --shadow-glow-accent: 0 0 30px rgba(192, 132, 252, 0.15), 0 0 60px rgba(192, 132, 252, 0.05);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(129, 140, 248, 0.08);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

    --header-height: 72px;
    --container-max: 1200px;
    --container-padding: 24px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

ul {
    list-style: none;
}

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

input {
    font-family: inherit;
    font-size: inherit;
}

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

/* --- Selection --- */
::selection {
    background: rgba(74, 222, 128, 0.3);
    color: #fff;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
}

/* --- Text Gradient Utility --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   AURORA BACKGROUND EFFECTS
   ============================================ */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.aurora-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.35;
    filter: blur(80px);
    will-change: transform;
}

.aurora-layer-1 {
    top: -50%;
    left: -50%;
    background: radial-gradient(ellipse at 30% 20%, rgba(74, 222, 128, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(129, 140, 248, 0.3) 0%, transparent 50%);
    animation: aurora-drift-1 20s ease-in-out infinite alternate;
}

.aurora-layer-2 {
    top: -30%;
    left: -30%;
    background: radial-gradient(ellipse at 60% 30%, rgba(192, 132, 252, 0.35) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 70%, rgba(74, 222, 128, 0.25) 0%, transparent 50%);
    animation: aurora-drift-2 25s ease-in-out infinite alternate;
}

.aurora-layer-3 {
    top: -40%;
    left: -40%;
    background: radial-gradient(ellipse at 50% 50%, rgba(129, 140, 248, 0.25) 0%, transparent 40%),
                radial-gradient(ellipse at 80% 20%, rgba(74, 222, 128, 0.2) 0%, transparent 40%);
    animation: aurora-drift-3 30s ease-in-out infinite alternate;
}

@keyframes aurora-drift-1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(5%, -3%) rotate(2deg) scale(1.05); }
    66% { transform: translate(-3%, 5%) rotate(-1deg) scale(0.98); }
    100% { transform: translate(2%, -2%) rotate(1deg) scale(1.02); }
}

@keyframes aurora-drift-2 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-4%, 3%) rotate(-2deg) scale(1.03); }
    100% { transform: translate(3%, -4%) rotate(2deg) scale(0.97); }
}

@keyframes aurora-drift-3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(3%, 2%) rotate(1.5deg); }
    100% { transform: translate(-2%, -3%) rotate(-1.5deg); }
}

.star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: star-twinkle var(--twinkle-dur, 3s) ease-in-out infinite alternate;
    opacity: 0;
}

@keyframes star-twinkle {
    0% { opacity: 0.1; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.2); }
    100% { opacity: 0.2; transform: scale(0.9); }
}

.section-aurora-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(74, 222, 128, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(192, 132, 252, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, rgba(10, 16, 32, 0.97), rgba(15, 23, 42, 0.97));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-card);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

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

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

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

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

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(74, 222, 128, 0.3);
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #050a12;
}

.btn-cookie-accept:hover {
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-1px);
}

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

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

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

.btn-cookie-settings:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.cookie-settings-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-medium);
    background: transparent;
}

.main-header.scrolled {
    background: linear-gradient(135deg, rgba(5, 10, 18, 0.92), rgba(10, 16, 32, 0.92));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-aurora-glow {
    position: absolute;
    top: -100%;
    left: 20%;
    width: 60%;
    height: 300%;
    background: radial-gradient(ellipse, rgba(74, 222, 128, 0.05) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.main-header.scrolled .header-aurora-glow {
    opacity: 1;
}

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

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.3));
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 1px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #050a12 !important;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 8px 22px;
}

.nav-cta:hover {
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-1px);
}

.nav-cta.active::after {
    display: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.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-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 40px) var(--container-padding) 60px;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: badge-pulse 3s ease-in-out infinite;
}

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

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.1); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.05;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(74, 222, 128, 0.1);
}

.title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.2));
    background-size: 200% 200%;
    animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #050a12;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: #050a12;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-fast);
    background-size: 300% 300%;
    animation: gradient-shift 4s ease-in-out infinite;
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, rgba(129, 140, 248, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-game-icon {
    width: 240px;
    height: 240px;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(74, 222, 128, 0.1),
                0 0 80px rgba(129, 140, 248, 0.05);
    animation: icon-float 6s ease-in-out infinite;
    object-fit: cover;
}

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

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orbit-spin linear infinite;
}

.hero-orbit-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(74, 222, 128, 0.15);
    animation-duration: 20s;
}

.hero-orbit-2 {
    width: 340px;
    height: 340px;
    border-color: rgba(129, 140, 248, 0.1);
    animation-duration: 30s;
    animation-direction: reverse;
}

.hero-orbit-3 {
    width: 370px;
    height: 370px;
    border-color: rgba(192, 132, 252, 0.08);
    animation-duration: 40s;
}

.hero-orbit::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.hero-orbit-2::after {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
    top: auto;
    bottom: -3px;
}

.hero-orbit-3::after {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    left: -3px;
    top: 50%;
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    animation: scroll-bounce 2s ease-in-out infinite;
}

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    position: relative;
    overflow: hidden;
    padding: 16px 0;
    background: linear-gradient(135deg, rgba(10, 16, 32, 0.8), rgba(15, 23, 42, 0.8));
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.ticker-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.ticker-dot-green { background: var(--primary); box-shadow: 0 0 8px var(--primary-glow); }
.ticker-dot-blue { background: var(--secondary); box-shadow: 0 0 8px var(--secondary-glow); }
.ticker-dot-purple { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

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

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.features-section,
.gallery-section,
.testimonials-section,
.about-section,
.faq-section,
.register-section,
.trust-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(74, 222, 128, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-primary);
}

.feature-card-large {
    grid-column: span 1;
    grid-row: span 1;
}

.feature-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(10, 16, 32, 1) 100%);
}

.gallery-showcase {
    position: relative;
    z-index: 1;
}

.gallery-main {
    margin-bottom: 20px;
}

.gallery-main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-card);
    aspect-ratio: 16/9;
    background: var(--bg-card);
}

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

.gallery-main-image:hover img {
    transform: scale(1.02);
}

.gallery-main-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.gallery-badge {
    padding: 6px 14px;
    background: rgba(5, 10, 18, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
    aspect-ratio: 16/9;
    background: var(--bg-card);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

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

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.gallery-thumb:hover {
    border-color: var(--secondary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: #050a12;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.92rem;
}

.author-location {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

.about-list li svg {
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 400px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.about-img-1 {
    top: 0;
    left: 0;
    width: 80%;
    z-index: 2;
}

.about-img-2 {
    bottom: 0;
    right: 0;
    width: 75%;
    z-index: 1;
}

.about-img-1:hover {
    transform: translate(-4px, -4px) rotate(-1deg);
    z-index: 3;
}

.about-img-2:hover {
    transform: translate(4px, 4px) rotate(1deg);
    z-index: 3;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-item {
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(74, 222, 128, 0.2);
}

.faq-item.active {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.05);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

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

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(74, 222, 128, 0.3);
    text-underline-offset: 2px;
}

/* ============================================
   REGISTRATION / LEAD FORM SECTION
   ============================================ */
.register-section {
    background: var(--bg-deep);
}

.register-aurora {
    opacity: 0.5;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.register-info .section-tag {
    margin-bottom: 16px;
}

.register-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.register-info p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.benefit-item svg {
    flex-shrink: 0;
}

/* Counter Ring */
.register-counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.counter-ring {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

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

.counter-bg-circle {
    fill: none;
    stroke: rgba(74, 222, 128, 0.1);
    stroke-width: 4;
}

.counter-progress-circle {
    fill: none;
    stroke: url(#counterGrad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 85;
    transition: stroke-dashoffset 2s ease-out;
}

.counter-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.counter-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.counter-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Form */
.register-form-wrap {
    position: relative;
}

.register-form {
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    text-align: center;
}

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

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

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap svg {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrap input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    background: rgba(5, 10, 18, 0.6);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

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

.input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
    background: rgba(5, 10, 18, 0.8);
}

.input-wrap input:focus + svg,
.input-wrap:focus-within svg {
    color: var(--primary);
}

.input-wrap input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 6px;
    min-height: 0;
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: 16px;
}

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

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-card);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    position: relative;
    margin-top: 1px;
}

.checkbox-label input:checked ~ .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #050a12;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(74, 222, 128, 0.3);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.5;
}

/* Submit button loader */
.btn-loader .spinner {
    animation: spin 1s linear infinite;
}

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

/* Form Success */
.form-success {
    padding: 60px 36px;
    background: var(--bg-card);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-glow-primary);
}

.success-icon {
    margin-bottom: 20px;
    animation: success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes success-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
}

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

.trust-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.trust-card:hover {
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.trust-card svg {
    margin: 0 auto 16px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-card a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(74, 222, 128, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-aurora-glow {
    position: absolute;
    top: -50%;
    left: 10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(74, 222, 128, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-contact strong {
    color: var(--text-secondary);
}

.footer-contact a {
    color: var(--primary);
    font-size: 0.85rem;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

.footer-links-col ul li a:hover {
    color: var(--primary);
}

.footer-responsible {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid var(--primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

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

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

.footer-address {
    margin-top: 4px;
    font-size: 0.78rem !important;
    color: var(--text-muted);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.features-grid [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.features-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.features-grid [data-reveal]:nth-child(3) { transition-delay: 0.15s; }
.features-grid [data-reveal]:nth-child(4) { transition-delay: 0.2s; }
.features-grid [data-reveal]:nth-child(5) { transition-delay: 0.25s; }
.features-grid [data-reveal]:nth-child(6) { transition-delay: 0.3s; }

.testimonials-grid [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid [data-reveal]:nth-child(3) { transition-delay: 0.25s; }

.trust-grid [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.trust-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.trust-grid [data-reveal]:nth-child(3) { transition-delay: 0.15s; }
.trust-grid [data-reveal]:nth-child(4) { transition-delay: 0.2s; }

.faq-list [data-reveal]:nth-child(1) { transition-delay: 0.03s; }
.faq-list [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
.faq-list [data-reveal]:nth-child(3) { transition-delay: 0.09s; }
.faq-list [data-reveal]:nth-child(4) { transition-delay: 0.12s; }
.faq-list [data-reveal]:nth-child(5) { transition-delay: 0.15s; }
.faq-list [data-reveal]:nth-child(6) { transition-delay: 0.18s; }
.faq-list [data-reveal]:nth-child(7) { transition-delay: 0.21s; }

/* ============================================
   LEGAL PAGES - Shared Styles
   ============================================ */
.legal-page-hero {
    position: relative;
    padding: calc(var(--header-height) + 60px) var(--container-padding) 60px;
    text-align: center;
    overflow: hidden;
    background: var(--bg-deep);
}

.legal-page-hero .aurora-bg {
    opacity: 0.4;
}

.legal-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.legal-page-hero p {
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.legal-content {
    background: rgba(248, 250, 252, 0.97);
    color: #1e293b;
    padding: 60px 0;
    min-height: 60vh;
}

.legal-content .container {
    max-width: 860px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4ade80;
    display: inline-block;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.legal-content ul,
.legal-content ol {
    color: #475569;
    margin-bottom: 14px;
    padding-left: 24px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: #059669;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong {
    color: #0f172a;
    font-weight: 600;
}

.legal-content .legal-info-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}

.legal-content .legal-info-box p {
    color: #166534;
    margin-bottom: 0;
}

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

    .hero-desc {
        margin: 0 auto 32px;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-game-icon {
        width: 180px;
        height: 180px;
    }

    .hero-orbit-1 { width: 230px; height: 230px; }
    .hero-orbit-2 { width: 260px; height: 260px; }
    .hero-orbit-3 { width: 285px; height: 285px; }

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

    .feature-card-large {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-image-stack {
        height: 300px;
    }

    .register-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .register-info .section-title {
        text-align: center;
    }

    .register-counter {
        justify-content: center;
    }

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

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

@media (max-width: 768px) {
    :root {
        --container-padding: 18px;
        --header-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(5, 10, 18, 0.98), rgba(10, 16, 32, 0.98));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + 20px) 24px 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition-medium);
        border-left: 1px solid var(--border-card);
        z-index: 999;
    }

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

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link.active::after {
        bottom: 8px;
        left: 16px;
        right: auto;
        width: 24px;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        margin-top: 8px;
    }

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

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

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

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

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

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

    .register-form {
        padding: 28px 20px;
    }

    .features-section,
    .gallery-section,
    .testimonials-section,
    .about-section,
    .faq-section,
    .register-section,
    .trust-section {
        padding: 70px 0;
    }

    .about-image-stack {
        height: 250px;
    }

    .about-img-1 { width: 85%; }
    .about-img-2 { width: 80%; }
}

@media (max-width: 480px) {
    .title-line {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .cookie-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

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

    .aurora-layer,
    .hero-game-icon,
    .hero-orbit,
    .ticker-content {
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-color-scheme: light) {
    /* Keep dark theme - it's integral to the aurora design */
}

/* Print styles */
@media print {
    .main-header,
    .cookie-banner,
    .aurora-bg,
    .hero-scroll-indicator,
    .social-proof-ticker {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
