/* ============================================
   WOODBER - Classic Number Game
   Geometric Design System
   ============================================ */

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

    --bg-dark: #0f0f14;
    --bg-darker: #0a0a0e;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    --bg-light: #f8f8fc;
    --bg-white: #ffffff;

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --text-dark: #1a1a2e;
    --text-dark-secondary: #4a4a60;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(0, 0, 0, 0.08);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.3);
    --shadow-glow-red: 0 0 30px rgba(239,68,68,0.3);
    --shadow-glow-yellow: 0 0 30px rgba(251,191,36,0.3);
    --shadow-glow-blue: 0 0 30px rgba(59,130,246,0.3);

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;

    --header-height: 76px;
    --container-max: 1200px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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

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

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

ul {
    list-style: none;
}

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

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

::selection {
    background: var(--primary);
    color: #fff;
}

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

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes geoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes geoRotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Scroll-triggered animation base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239,68,68,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 6px 24px rgba(239,68,68,0.45);
    transform: translateY(-2px);
}

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

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.35s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 14, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.h-shape {
    position: absolute;
    opacity: 0.04;
}

.h-tri-1 {
    top: -10px;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--primary);
}

.h-hex-1 {
    bottom: -15px;
    left: 25%;
    width: 40px;
    height: 23px;
    background: var(--secondary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.h-circle-1 {
    top: 50%;
    right: 40%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

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

.logo-hex {
    position: absolute;
    inset: 0;
    background: var(--primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.logo-tri {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 17px solid var(--secondary);
}

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

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

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

.nav-cta:hover {
    background: var(--primary-dark);
    color: #fff !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
    z-index: 1001;
}

.toggle-bar {
    width: 100%;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(239,68,68,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(59,130,246,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(251,191,36,0.05) 0%, transparent 50%),
        var(--bg-dark);
}

/* Hero geometric pattern background */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Floating geometric shapes */
.geo-float {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.geo-tri-1 {
    top: 15%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary);
    opacity: 0.07;
    animation: float 8s ease-in-out infinite;
}

.geo-tri-2 {
    bottom: 20%;
    right: 8%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--secondary);
    opacity: 0.06;
    animation: float-reverse 10s ease-in-out infinite;
}

.geo-tri-3 {
    top: 60%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 31px solid var(--accent);
    opacity: 0.05;
    animation: float 12s ease-in-out infinite 2s;
}

.geo-hex-1 {
    top: 25%;
    right: 15%;
    width: 80px;
    height: 46px;
    background: var(--accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.05;
    animation: geoRotateSlow 30s linear infinite;
}

.geo-hex-2 {
    bottom: 30%;
    left: 12%;
    width: 50px;
    height: 29px;
    background: var(--secondary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.04;
    animation: float 9s ease-in-out infinite 1s;
}

.geo-hex-3 {
    top: 70%;
    right: 25%;
    width: 35px;
    height: 20px;
    background: var(--primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.06;
    animation: float-reverse 11s ease-in-out infinite;
}

.geo-circle-1 {
    top: 10%;
    right: 30%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    opacity: 0.06;
    animation: float 7s ease-in-out infinite 0.5s;
}

.geo-circle-2 {
    bottom: 15%;
    left: 30%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.04;
    animation: float-reverse 8s ease-in-out infinite;
}

.geo-circle-3 {
    top: 50%;
    right: 5%;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    opacity: 0.06;
    animation: float 6s ease-in-out infinite 3s;
}

.geo-square-1 {
    top: 35%;
    left: 8%;
    width: 35px;
    height: 35px;
    background: var(--primary);
    opacity: 0.04;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite 1.5s;
}

.geo-diamond-1 {
    bottom: 40%;
    right: 12%;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    opacity: 0.05;
    transform: rotate(45deg);
    animation: float-reverse 9s ease-in-out infinite 2s;
}

/* Hero container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Hero content */
.hero-content {
    animation: slideUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

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

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    letter-spacing: 6px;
    color: var(--text-primary);
}

.title-line-2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 4px;
    color: var(--text-secondary);
}

.title-line-3 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 4px;
    color: var(--text-secondary);
}

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

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

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.8s var(--ease-out) 0.4s both;
}

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

.hero-game-icon {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.frame-ring {
    position: absolute;
    inset: -20px;
    border: 2px dashed var(--border-color);
    border-radius: 50%;
    animation: geoRotateSlow 40s linear infinite;
}

.frame-deco {
    position: absolute;
    z-index: 1;
}

.frame-deco-1 {
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    opacity: 0.15;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    animation: float 6s ease-in-out infinite;
}

.frame-deco-2 {
    bottom: 20px;
    left: -20px;
    width: 50px;
    height: 29px;
    background: var(--secondary);
    opacity: 0.2;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float-reverse 7s ease-in-out infinite;
}

.frame-deco-3 {
    bottom: -15px;
    right: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.15;
    animation: float 5s ease-in-out infinite 1s;
}

/* Hero floating cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    z-index: 3;
    white-space: nowrap;
}

.hero-floating-card svg {
    color: var(--secondary);
}

.card-1 {
    top: 30px;
    right: -20px;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    bottom: 50px;
    left: -30px;
    animation: float-reverse 6s ease-in-out infinite 0.5s;
}

.card-2 svg {
    color: var(--accent);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--text-muted);
    animation: scrollLine 2s ease-in-out infinite;
}

/* --- Social Proof Ticker --- */
.social-proof-ticker {
    background: var(--primary);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ticker-track {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    padding: 0 16px;
}

.ticker-sep {
    color: rgba(255,255,255,0.3);
    padding: 0 8px;
    font-weight: 700;
}

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

.ticker-dot-green { background: #22c55e; }
.ticker-dot-blue { background: #60a5fa; }
.ticker-dot-yellow { background: var(--secondary); }
.ticker-dot-red { background: #fca5a5; }

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.15);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.underline-tri {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid var(--primary);
}

.underline-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.underline-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

/* --- About Section --- */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.about-geo-1 {
    top: 10%;
    right: -5%;
    width: 300px;
    height: 173px;
    background: var(--primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: geoRotateSlow 50s linear infinite;
}

.about-geo-2 {
    bottom: 5%;
    left: -3%;
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 208px solid var(--secondary);
}

.about-geo-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--accent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.about-card {
    position: relative;
    overflow: hidden;
}

.about-card-main {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.about-card-geo {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    opacity: 0.06;
    transform: rotate(45deg);
}

.about-card-content {
    position: relative;
    z-index: 1;
}

.about-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

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

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239,68,68,0.1);
    border-radius: 6px;
    color: var(--primary);
}

.about-side-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card-small {
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s var(--ease-out);
}

.about-card-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-card-red:hover { border-color: rgba(239,68,68,0.3); box-shadow: var(--shadow-glow-red); }
.about-card-yellow:hover { border-color: rgba(251,191,36,0.3); box-shadow: var(--shadow-glow-yellow); }
.about-card-blue:hover { border-color: rgba(59,130,246,0.3); box-shadow: var(--shadow-glow-blue); }

.small-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.about-card-red .small-card-icon { background: rgba(239,68,68,0.1); color: var(--primary); }
.about-card-yellow .small-card-icon { background: rgba(251,191,36,0.1); color: var(--secondary); }
.about-card-blue .small-card-icon { background: rgba(59,130,246,0.1); color: var(--accent); }

.about-card-small h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* --- Gallery Section --- */
.gallery-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.05) 0%, transparent 60%),
        var(--bg-darker);
}

.gallery-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.01) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.01) 87.5%, rgba(255,255,255,0.01)),
        linear-gradient(150deg, rgba(255,255,255,0.01) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.01) 87.5%, rgba(255,255,255,0.01)),
        linear-gradient(30deg, rgba(255,255,255,0.01) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.01) 87.5%, rgba(255,255,255,0.01)),
        linear-gradient(150deg, rgba(255,255,255,0.01) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.01) 87.5%, rgba(255,255,255,0.01));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item {
    cursor: pointer;
}

.gallery-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.35s var(--ease-out);
    height: 100%;
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover .gallery-frame {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-red);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,15,20,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    transition: transform 0.3s var(--ease-bounce);
}

.gallery-item:hover .gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-caption {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,10,14,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Features Section --- */
.features-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.features-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.feat-geo {
    position: absolute;
    opacity: 0.03;
}

.feat-geo-1 {
    top: 5%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 139px solid var(--primary);
    animation: float 12s ease-in-out infinite;
}

.feat-geo-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 87px;
    background: var(--accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.feat-geo-3 {
    top: 40%;
    right: 15%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    animation: float-reverse 10s ease-in-out infinite;
}

.feat-geo-4 {
    bottom: 30%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite 2s;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(239,68,68,0.2);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.feature-icon-red { background: rgba(239,68,68,0.12); color: var(--primary); }
.feature-icon-yellow { background: rgba(251,191,36,0.12); color: var(--secondary); }
.feature-icon-blue { background: rgba(59,130,246,0.12); color: var(--accent); }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* --- How to Play Section --- */
.howto-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(251,191,36,0.06) 0%, transparent 60%),
        var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.howto-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.howto-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.step-geo {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.15;
}

.step-tri {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary);
    inset: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-hex {
    background: var(--secondary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.step-circle {
    border-radius: 50%;
    background: var(--accent);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

.step-connector {
    position: absolute;
    top: 40px;
    right: -10px;
    width: 40px;
    height: 2px;
    background: var(--border-color);
}

.howto-step:last-child .step-connector {
    display: none;
}

/* --- Live Counter Section --- */
.live-counter-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.counter-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(60deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-60deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(60deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-60deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 56px 100px;
    background-position: 0 0, 0 0, 28px 50px, 28px 50px;
    pointer-events: none;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    position: relative;
}

.counter-icon-wrap {
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 3px;
    color: #fff;
    display: block;
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.counter-pulse {
    position: absolute;
    top: 0;
    right: 30%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.counter-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.faq-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.faq-geo {
    position: absolute;
    opacity: 0.03;
}

.faq-geo-1 {
    top: 20%;
    right: -5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--accent);
}

.faq-geo-2 {
    bottom: 10%;
    left: -3%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 139px solid var(--secondary);
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(239,68,68,0.3);
    box-shadow: var(--shadow-glow-red);
}

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

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

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239,68,68,0.1);
    border-radius: 6px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
}

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

.faq-answer a {
    color: var(--accent);
}

.faq-answer a:hover {
    color: var(--accent-light);
}

/* --- Signup Section --- */
.signup-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(239,68,68,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(59,130,246,0.06) 0%, transparent 50%),
        var(--bg-darker);
}

.signup-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.signup-geo-1 {
    top: 10%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--primary);
    animation: float 10s ease-in-out infinite;
}

.signup-geo-2 {
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: 46px;
    background: var(--accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float-reverse 12s ease-in-out infinite;
}

.signup-geo-3 {
    top: 50%;
    right: 30%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    animation: float 8s ease-in-out infinite 2s;
}

.signup-geo-4 {
    bottom: 40%;
    left: 20%;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    transform: rotate(45deg);
    animation: float-reverse 9s ease-in-out infinite 1s;
}

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

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

.signup-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.05;
}

.signup-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.signup-benefits svg {
    flex-shrink: 0;
    color: #22c55e;
}

.signup-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--accent);
}

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

.signup-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

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

.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.optional {
    font-weight: 400;
    text-transform: none;
    color: var(--text-muted);
}

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

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

.input-wrap input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: all 0.25s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

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

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 4px;
    min-height: 1.2em;
}

.form-consent,
.form-marketing {
    margin-bottom: 16px;
}

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

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

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

.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    transform: scale(0);
    transition: transform 0.2s var(--ease-bounce);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: scale(1);
}

.checkbox-label a {
    color: var(--accent);
}

/* Form success */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    animation: scaleIn 0.5s var(--ease-out);
}

.success-icon {
    color: #22c55e;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* --- Trust Section --- */
.trust-section {
    padding: 100px 0;
    position: relative;
}

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

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59,130,246,0.2);
}

.trust-card-icon {
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* --- Footer --- */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-geo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-geo {
    position: absolute;
    opacity: 0.03;
}

.footer-geo-1 {
    top: 10%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--primary);
}

.footer-geo-2 {
    bottom: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.footer-geo-3 {
    bottom: 10%;
    right: 25%;
    width: 60px;
    height: 35px;
    background: var(--secondary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-brand-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

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

.footer-links-group li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-group svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.footer-address {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-age {
    margin-top: 4px;
}

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

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(239,68,68,0.15);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.no-gambling-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 560px;
    z-index: 9998;
    animation: slideUp 0.5s var(--ease-out);
}

.cookie-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cookie-geo-shape {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
}

.cookie-triangle {
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--primary);
}

.cookie-circle {
    bottom: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
}

.cookie-content {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.cookie-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251,191,36,0.1);
    border-radius: var(--radius-sm);
    color: var(--secondary);
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

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

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

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

.btn-cookie-accept {
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-necessary {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

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

.btn-cookie-settings {
    padding: 10px 20px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

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

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

.cookie-setting-item {
    margin-bottom: 10px;
}

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

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

.cookie-settings-panel .btn-cookie-accept {
    margin-top: 12px;
}

/* --- Legal Pages --- */
.legal-content {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 60px;
    border-radius: var(--radius-lg);
    margin: 40px auto;
    max-width: 900px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-content .legal-updated {
    color: var(--text-dark-secondary);
    font-size: 0.9rem;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid var(--primary);
}

.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 0.95rem;
    list-style: disc;
}

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

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

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

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

.legal-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 40px;
    text-align: center;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(239,68,68,0.06) 0%, transparent 60%),
        var(--bg-dark);
}

.legal-hero .section-tag {
    margin-bottom: 12px;
}

.legal-hero .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0;
}

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

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .about-side-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

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

    .gallery-item-large {
        grid-row: span 1;
        grid-column: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-darker);
        border-left: 1px solid var(--border-color);
        padding: calc(var(--header-height) + 20px) 24px 24px;
        transition: right 0.35s var(--ease-out);
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

    .hero-floating-card {
        display: none;
    }

    .about-side-cards {
        grid-template-columns: 1fr;
    }

    .about-card-main {
        padding: 32px 24px;
    }

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

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

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }

    .howto-steps {
        flex-direction: column;
        gap: 32px;
    }

    .step-connector {
        display: none;
    }

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

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

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

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

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

    .legal-content {
        padding: 32px 20px;
        margin: 20px 16px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-inner {
        padding: 20px;
    }

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

    .btn-cookie-accept,
    .btn-cookie-necessary,
    .btn-cookie-settings {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

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

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

/* --- Print --- */
@media print {
    .site-header,
    .cookie-banner,
    .hero-bg-pattern,
    .hero-grid-overlay,
    .geo-float,
    .social-proof-ticker {
        display: none !important;
    }

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