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

:root {
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #fca5a5;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    --secondary-light: #fde68a;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-light: #93bbfd;

    --bg-dark: #0f0f14;
    --bg-darker: #0a0a0e;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    --bg-surface: #14141c;

    --text-primary: #f1f1f5;
    --text-secondary: #a1a1b5;
    --text-muted: #6b6b80;

    --white: #ffffff;
    --black: #000000;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --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: 'Orbitron', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.6s ease;

    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

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

/* ============================
   GEOMETRIC PATTERNS
   ============================ */

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.08;
    pointer-events: none;
}

.geo-hexagon {
    position: absolute;
    width: 80px;
    height: 92px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.06;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.geo-diamond {
    position: absolute;
    transform: rotate(45deg);
    opacity: 0.06;
    pointer-events: none;
}

.geo-line {
    position: absolute;
    height: 2px;
    opacity: 0.1;
    pointer-events: none;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

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

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    font-weight: 600;
    letter-spacing: 1px;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

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

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: transform var(--transition-normal), opacity var(--transition-fast);
}

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

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

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

/* ============================
   BUTTONS
   ============================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0a0a 100%);
}

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

.hero .geo-t1 {
    top: 10%;
    left: 5%;
    border-width: 0 60px 100px 60px;
    border-color: transparent transparent var(--primary) transparent;
    animation: float-slow 8s ease-in-out infinite;
}

.hero .geo-t2 {
    top: 60%;
    right: 10%;
    border-width: 80px 45px 0 45px;
    border-color: var(--secondary) transparent transparent transparent;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.hero .geo-t3 {
    bottom: 15%;
    left: 15%;
    border-width: 0 35px 60px 35px;
    border-color: transparent transparent var(--accent) transparent;
    animation: float-slow 7s ease-in-out infinite;
}

.hero .geo-h1 {
    top: 20%;
    right: 25%;
    width: 100px;
    height: 115px;
    background: var(--secondary);
    animation: rotate-slow 20s linear infinite;
}

.hero .geo-h2 {
    bottom: 25%;
    right: 5%;
    width: 60px;
    height: 69px;
    background: var(--accent);
    animation: rotate-slow 15s linear infinite reverse;
}

.hero .geo-c1 {
    top: 30%;
    left: 30%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary);
    animation: pulse-slow 6s ease-in-out infinite;
}

.hero .geo-c2 {
    bottom: 20%;
    right: 30%;
    width: 80px;
    height: 80px;
    background: var(--secondary);
    animation: pulse-slow 8s ease-in-out infinite reverse;
}

.hero .geo-c3 {
    top: 50%;
    left: 60%;
    width: 40px;
    height: 40px;
    background: var(--accent);
    animation: float-slow 5s ease-in-out infinite;
}

.hero .geo-d1 {
    top: 15%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--primary);
    animation: rotate-slow 12s linear infinite;
}

.hero .geo-d2 {
    bottom: 30%;
    left: 45%;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary);
    animation: rotate-slow 8s linear infinite reverse;
}

.hero .geo-l1 {
    top: 40%;
    left: 0;
    width: 200px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: rotate(-15deg);
}

.hero .geo-l2 {
    top: 70%;
    right: 0;
    width: 300px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: rotate(20deg);
}

.hero .geo-l3 {
    top: 25%;
    right: 15%;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: rotate(-30deg);
}

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

.hero-content {
    flex: 1;
    padding: 60px 24px 60px 0;
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: calc((100vw - var(--container-max)) / 2 + 24px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease both;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease both;
}

.title-line-1 {
    color: var(--text-primary);
    animation-delay: 0.1s;
}

.title-line-2 {
    color: var(--secondary);
    animation-delay: 0.2s;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

.title-line-3 {
    color: var(--primary);
    animation-delay: 0.3s;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.hero-image-container {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: calc((100vw - var(--container-max)) / 2 + 24px);
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-frame {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(251,191,36,0.05));
    border: 2px solid rgba(239,68,68,0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero-game-icon {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
}

.frame-tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.frame-tr { top: -8px; right: -8px; border-left: none; border-bottom: none; }
.frame-bl { bottom: -8px; left: -8px; border-right: none; border-top: none; }
.frame-br { bottom: -8px; right: -8px; border-left: none; border-top: none; }

.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.badge-left {
    left: -20px;
    top: 30%;
    animation: float-badge 4s ease-in-out infinite;
}

.badge-right {
    right: -10px;
    bottom: 25%;
    animation: float-badge 5s ease-in-out infinite reverse;
}

/* ============================
   SOCIAL PROOF TICKER
   ============================ */

.social-proof-ticker {
    background: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
    padding-right: 48px;
}

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

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

.ticker-dot-red { background: var(--primary); }
.ticker-dot-yellow { background: var(--secondary); }
.ticker-dot-blue { background: var(--accent); }

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

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

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    padding: 6px 20px;
    border: 1px solid rgba(239,68,68,0.3);
    background: rgba(239,68,68,0.08);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    line-height: 1.1;
    color: var(--text-primary);
}

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

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

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

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

/* ============================
   ABOUT SECTION
   ============================ */

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

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(239,68,68,0.05) 0%, transparent 50%),
                       radial-gradient(circle at 80% 50%, rgba(59,130,246,0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.highlight-item:hover {
    transform: translateX(8px);
    border-color: rgba(239,68,68,0.2);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239,68,68,0.08);
    border-radius: var(--radius-md);
}

.highlight-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-image-block {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-image-geo {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.geo-accent-1 {
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary);
    opacity: 0.5;
    transform: rotate(45deg);
}

.geo-accent-2 {
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    opacity: 0.15;
    border-radius: 50%;
}

.geo-accent-3 {
    top: 50%;
    right: -30px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid var(--accent);
    opacity: 0.2;
}

/* ============================
   SCREENSHOTS SECTION
   ============================ */

.screenshots-section {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

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

.screenshots-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.screenshot-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.screenshot-card:hover {
    transform: translateY(-8px);
}

.screenshot-large {
    grid-row: 1 / 3;
}

.screenshot-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

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

.screenshot-card:hover .screenshot-inner img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
    transform: translateY(0);
}

.screenshot-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--white);
}

.screenshot-geo-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    opacity: 0.3;
    pointer-events: none;
    z-index: 2;
}

/* ============================
   FEATURES SECTION
   ============================ */

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

.features-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(239,68,68,0.02) 100px, rgba(239,68,68,0.02) 101px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(239,68,68,0.02) 100px, rgba(239,68,68,0.02) 101px);
    pointer-events: none;
}

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

.feature-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.feature-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239,68,68,0.08);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

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

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

/* ============================
   LIVE COUNTER SECTION
   ============================ */

.live-counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

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

.counter-card {
    position: relative;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.counter-card:hover {
    transform: translateY(-4px);
}

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

.counter-geo-1 {
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.counter-geo-2 {
    bottom: -8px;
    left: -8px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    transform: rotate(45deg);
}

.counter-geo-3 {
    top: -5px;
    left: -5px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--accent);
}

.counter-geo-4 {
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 57px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.counter-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.counter-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-top: 8px;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================
   FAQ SECTION
   ============================ */

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

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

.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(239,68,68,0.2);
}

.faq-item.active {
    border-color: rgba(239,68,68,0.3);
}

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

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

.faq-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: 50%;
    transition: transform var(--transition-normal), background var(--transition-normal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

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

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================
   SIGNUP SECTION
   ============================ */

.signup-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a0808 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

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

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

.signup-geo-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.signup-geo-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    transform: rotate(45deg);
}

.signup-geo-3 {
    top: 50%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--accent);
}

.signup-geo-4 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 115px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

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

.signup-title {
    text-align: left;
}

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

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

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

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

.signup-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 12px 16px;
    background: rgba(251,191,36,0.05);
    border: 1px solid rgba(251,191,36,0.15);
    border-radius: var(--radius-md);
}

.signup-form-container {
    position: relative;
}

.signup-form {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-optional {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

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

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

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

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

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

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

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

.form-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
    position: relative;
}

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

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
}

.form-checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-text {
    display: inline;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-flex;
}

.form-success,
.form-error-message {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
}

.success-icon,
.error-icon {
    margin-bottom: 24px;
}

.form-success h3,
.form-error-message h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.form-success p,
.form-error-message p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-error-message a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================
   TRUST SECTION
   ============================ */

.trust-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

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

.trust-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239,68,68,0.2);
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(239,68,68,0.08);
    border-radius: var(--radius-md);
}

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

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

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

.footer {
    position: relative;
    padding: 80px 0 0;
    background: var(--bg-darker);
    overflow: hidden;
}

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

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

.footer-geo-1 {
    top: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary);
    transform: rotate(45deg);
}

.footer-geo-2 {
    bottom: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
}

.footer-geo-3 {
    top: 10%;
    right: 30%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--accent);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

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

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

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

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

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

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

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

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    overflow: hidden;
}

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

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

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

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

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

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

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

.btn-cookie-accept {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

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

.btn-cookie-reject {
    padding: 10px 24px;
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-cookie-reject:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-primary);
}

.btn-cookie-settings {
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cookie-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
}

.cookie-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.cookie-modal-close:hover {
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cookie-option-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 26px;
    transition: background var(--transition-fast);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 16px 24px 24px;
}

.cookie-modal-footer .btn-cookie-accept {
    width: 100%;
}

/* ============================
   LEGAL PAGES
   ============================ */

.legal-content {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
}

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

.legal-hero {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 0;
    position: relative;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.legal-hero p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-body {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.legal-body h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(239,68,68,0.2);
}

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

.legal-body h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

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

.legal-body a {
    color: var(--primary);
    text-decoration: underline;
}

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

/* ============================
   ANIMATIONS
   ============================ */

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.06; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

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

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

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

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: calc(var(--header-height) + 40px);
        min-height: auto;
    }

    .hero-content {
        margin-left: 0;
        padding: 40px 24px;
        max-width: 100%;
        text-align: center;
    }

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

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

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

    .hero-image-container {
        margin-right: 0;
        width: 300px;
        height: 300px;
        margin-bottom: 40px;
    }

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

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

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

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

    .screenshot-large {
        grid-row: auto;
    }

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

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

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

    .signup-title {
        text-align: center;
    }

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

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

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

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }

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

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

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

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

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

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

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

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

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

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .legal-body {
        padding: 28px 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        width: 250px;
        height: 250px;
    }

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

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

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

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

    .counter-value {
        font-size: 2rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================
   ACCESSIBILITY
   ============================ */

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

    html {
        scroll-behavior: auto;
    }
}

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

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
