/* ============================================
   CSS CUSTOM PROPERTIES & RESET
   ============================================ */

:root {
    /* Colors */
    --color-primary: #1a1a2e;
    --color-primary-dark: #0f0f1e;
    --color-primary-light: #252545;
    --color-primary-lighter: #2e2e52;
    --color-secondary: #eaeaea;
    --color-secondary-dark: #d0d0d0;
    --color-accent: #e94560;
    --color-accent-dark: #c73650;
    --color-accent-light: #ff6b85;
    --color-accent-glow: rgba(233, 69, 96, 0.4);
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #eaeaea;
    --color-text-muted: #a0a0b8;
    --color-text-dark: #1a1a2e;
    --color-success: #4ade80;
    --color-error: #ef4444;
    --color-glass: rgba(255, 255, 255, 0.06);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    --color-glass-hover: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

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

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;
    --radius-full: 9999px;

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.3);
    --shadow-accent: 0 4px 30px rgba(233, 69, 96, 0.3);
    --shadow-accent-lg: 0 8px 50px rgba(233, 69, 96, 0.4);

    /* Z-Index */
    --z-base: 1;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-cookie: 400;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-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(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-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;
}

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

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

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

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(8px) rotate(-2deg); }
}

@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 slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(233, 69, 96, 0.3); }
    50% { box-shadow: 0 0 40px rgba(233, 69, 96, 0.6); }
}

@keyframes borderMorph {
    0% { border-radius: 12px; }
    25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50%; }
    75% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 12px; }
}

@keyframes particleDrift {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(50px) scale(0.3); opacity: 0; }
}

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.btn--accent:active {
    transform: translateY(0) scale(0.98);
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--color-text-muted);
    text-decoration: underline;
    padding: 12px 16px;
}

.btn--ghost:hover {
    color: var(--color-accent);
}

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

.btn--glass:hover {
    background: var(--color-glass-hover);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
}

.btn--glow {
    animation: glowPulse 3s ease-in-out infinite;
}

.btn--glow:hover {
    animation: none;
    box-shadow: var(--shadow-accent-lg);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-glass-border);
    padding: var(--space-sm) 0;
}

.header__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
    transition: transform var(--transition-base);
}

.header__logo:hover {
    transform: scale(1.05);
    color: var(--color-white);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon svg {
    transition: transform var(--transition-base);
}

.header__logo:hover .logo-icon svg {
    transform: rotate(-15deg) scale(1.1);
}

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

.nav-link {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: center;
}

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

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

.nav-link--cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    border-radius: var(--radius-md);
    padding: 10px 24px;
}

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

.nav-link--cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: calc(var(--z-overlay) + 10);
}

.header__burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.header__burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 30, 0.97);
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: var(--space-xs);
    transition: all var(--transition-base);
    z-index: 1;
}

.mobile-nav-close:hover {
    color: var(--color-white);
    transform: scale(1.2);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.mobile-nav-link--cta {
    color: var(--color-accent);
}

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

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

.hero__bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-layer {
    position: absolute;
    inset: 0;
}

.hero__bg-layer--1 {
    background: radial-gradient(ellipse at 20% 50%, rgba(233, 69, 96, 0.12) 0%, transparent 60%);
}

.hero__bg-layer--2 {
    background: radial-gradient(ellipse at 80% 30%, rgba(233, 69, 96, 0.08) 0%, transparent 50%);
    animation: floatSlow 8s ease-in-out infinite;
}

.hero__bg-layer--3 {
    background:
        radial-gradient(circle at 10% 90%, rgba(233, 69, 96, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(100, 100, 200, 0.05) 0%, transparent 30%);
    animation: floatReverse 10s ease-in-out infinite;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleDrift linear infinite;
}

.hero__container {
    position: relative;
    z-index: var(--z-base);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: var(--space-xl);
}

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

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: var(--space-xl);
    letter-spacing: -1.5px;
}

.hero__title-line {
    display: block;
    color: var(--color-white);
}

.hero__title-line--accent {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero__stats {
    display: flex;
    gap: var(--space-3xl);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat__number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
}

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

/* Hero Visual */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-glass-border);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    background: var(--color-primary-light);
}

.hero__image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-accent), transparent, var(--color-accent));
    z-index: -1;
    opacity: 0.5;
}

.hero__game-icon {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.hero__floating-card--1 {
    top: 10%;
    right: -20px;
    animation: floatSlow 5s ease-in-out infinite;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    bottom: 20%;
    left: -30px;
    animation: floatReverse 6s ease-in-out infinite;
    animation-delay: 1s;
}

.hero__floating-card--3 {
    bottom: -5%;
    right: 10%;
    animation: floatSlow 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    animation: fadeIn 1s ease 2s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse__wheel {
    width: 3px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

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

.ticker-section {
    background: var(--color-primary-dark);
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
    padding: var(--space-md) 0;
    overflow: hidden;
}

.ticker-track {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    gap: var(--space-3xl);
    animation: ticker 40s linear infinite;
    width: max-content;
}

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

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

.about {
    padding: var(--space-5xl) 0;
    position: relative;
}

.about__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.about__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.about__header .section-tag {
    display: inline-flex;
}

.about__header .section-subtitle {
    margin: 0 auto;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.about__card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about__card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 69, 96, 0.3);
    background: var(--color-glass-hover);
    border-radius: var(--radius-blob);
    box-shadow: var(--shadow-accent);
}

.about__card:hover::before {
    opacity: 1;
}

.about__card-icon {
    margin-bottom: var(--space-lg);
    transition: transform var(--transition-spring);
}

.about__card:hover .about__card-icon {
    transform: scale(1.15) rotate(-5deg);
}

.about__card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.about__card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

.screenshots {
    padding: var(--space-5xl) 0;
    background: var(--color-primary-dark);
    position: relative;
}

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

.screenshots__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.screenshots__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.screenshots__header .section-tag {
    display: inline-flex;
}

.screenshots__header .section-subtitle {
    margin: 0 auto;
}

.screenshots__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-xl);
}

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

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

.screenshot-card__inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-glass-border);
    height: 100%;
}

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

.screenshot-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.screenshot-card:hover .screenshot-card__inner img {
    transform: scale(1.08);
}

.screenshot-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent, rgba(15, 15, 30, 0.9));
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition-base);
}

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

.screenshot-card__tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.screenshot-card__overlay h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

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

.features {
    padding: var(--space-5xl) 0;
    position: relative;
}

.features__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.features__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.features__header .section-tag {
    display: inline-flex;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-glass-border);
    transition: all var(--transition-base);
    position: relative;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: var(--space-md);
}

.feature-item__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary-lighter);
    line-height: 1;
    min-width: 70px;
    transition: color var(--transition-base);
}

.feature-item:hover .feature-item__number {
    color: var(--color-accent);
}

.feature-item__content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    transition: transform var(--transition-base);
}

.feature-item:hover .feature-item__content h3 {
    transform: translateX(4px);
}

.feature-item__content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.feature-item__line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    border-radius: 2px;
    transition: height var(--transition-slow);
    transform: translateY(-50%);
}

.feature-item:hover .feature-item__line {
    height: 60%;
}

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

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

.live-counter__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
}

.live-counter__bg {
    position: absolute;
    inset: -100px;
    background: radial-gradient(ellipse at center, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.live-counter__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.live-counter__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-3xl);
}

.live-counter__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.counter-box {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.counter-box:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 69, 96, 0.3);
    border-radius: var(--radius-blob);
}

.counter-box__value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.counter-box__label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.counter-box__pulse {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: var(--color-success);
    border-radius: 50%;
}

.counter-box__pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-success);
    animation: pulse 2s ease-in-out infinite;
}

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

.signup {
    padding: var(--space-5xl) 0;
    background: var(--color-primary-dark);
    position: relative;
}

.signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-glass-border), transparent);
}

.signup__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.signup__visual {
    position: relative;
}

.signup__image-stack {
    position: relative;
    height: 500px;
}

.signup__img {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-glass-border);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.signup__img--1 {
    width: 75%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 2;
    animation: floatSlow 6s ease-in-out infinite;
}

.signup__img--2 {
    width: 65%;
    height: 55%;
    bottom: 0;
    right: 0;
    z-index: 1;
    animation: floatReverse 7s ease-in-out infinite;
}

.signup__form-wrapper {
    max-width: 520px;
}

.signup-form {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 14px 18px;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 1rem;
    transition: all var(--transition-base);
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: rgba(160, 160, 184, 0.5);
}

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

.form-error {
    font-size: 0.8rem;
    color: var(--color-error);
    min-height: 1em;
}

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.form-group--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
    line-height: 1.5;
}

.form-group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-accent);
    cursor: pointer;
    flex-shrink: 0;
}

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

/* Signup success/error */
.signup-success {
    text-align: center;
    padding: var(--space-3xl) 0;
    animation: scaleIn 0.5s ease;
}

.signup-success__icon {
    margin-bottom: var(--space-lg);
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-success);
    margin-bottom: var(--space-md);
}

.signup-success p {
    color: var(--color-text-muted);
}

.signup-error {
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    animation: scaleIn 0.3s ease;
}

.signup-error p {
    color: var(--color-error);
    font-size: 0.9rem;
}

.signup-error a {
    color: var(--color-error);
    text-decoration: underline;
}

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

.faq {
    padding: var(--space-5xl) 0;
    position: relative;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.faq__header .section-tag {
    display: inline-flex;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(233, 69, 96, 0.2);
}

.faq-item.active {
    border-color: rgba(233, 69, 96, 0.3);
    background: var(--color-glass-hover);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: left;
    transition: color var(--transition-base);
}

.faq-item__question:hover {
    color: var(--color-accent);
}

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

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-item__answer a {
    color: var(--color-accent);
    text-decoration: underline;
}

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

.trust {
    padding: var(--space-5xl) 0;
    background: var(--color-primary-dark);
    position: relative;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-glass-border), transparent);
}

.trust__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.trust__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.trust__header .section-tag {
    display: inline-flex;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(233, 69, 96, 0.3);
    border-radius: var(--radius-blob);
}

.trust-card__icon {
    margin-bottom: var(--space-lg);
    transition: transform var(--transition-spring);
}

.trust-card:hover .trust-card__icon {
    transform: scale(1.2) rotate(5deg);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.trust-card a {
    color: var(--color-accent);
}

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

.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-glass-border);
    background: var(--color-primary);
}

.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.footer__logo:hover {
    transform: scale(1.05);
    color: var(--color-white);
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer__col a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.footer__col a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer__bottom {
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer__responsible p {
    color: var(--color-accent);
    font-weight: 500;
}

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

.legal-hero {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    background: var(--color-primary-dark);
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-glass-border), transparent);
}

.legal-hero__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.legal-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

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

.legal-content {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.legal-content__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    color: var(--color-text-dark);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: var(--space-md);
}

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

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: var(--space-sm);
    list-style-type: disc;
}

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

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

.legal-footer-note {
    margin-top: var(--space-4xl);
    padding-top: var(--space-xl);
    border-top: 1px solid #ddd;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #666;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: rgba(15, 15, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-glass-border);
    padding: var(--space-xl);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

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

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

.cookie-consent__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-consent__text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent__text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

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

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

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

.cookie-settings-panel {
    max-width: 1300px;
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-glass-border);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
}

.cookie-toggle {
    display: flex;
    align-items: center;
}

.cookie-toggle label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

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

/* ============================================
   AGE MODAL
   ============================================ */

.age-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.age-modal__content {
    position: relative;
    z-index: 1;
    background: var(--color-primary-light);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: scaleIn 0.4s ease;
}

.age-modal__icon {
    margin-bottom: var(--space-lg);
}

.age-modal__content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.age-modal__content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.age-modal__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

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

@media (max-width: 1100px) {
    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .screenshot-card--large {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
}

@media (max-width: 900px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

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

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image-wrapper {
        max-width: 300px;
    }

    .hero__floating-card--1 {
        right: -10px;
    }

    .hero__floating-card--2 {
        left: -10px;
    }

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

    .signup__visual {
        display: none;
    }

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

    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .live-counter__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 680px) {
    .about__grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .feature-item {
        flex-direction: column;
        gap: var(--space-md);
    }

    .feature-item__number {
        min-width: auto;
    }

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

    .cookie-consent__actions {
        justify-content: center;
    }

    .cookie-settings-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__badge {
        font-size: 0.75rem;
    }

    .hero__floating-card {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

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

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

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}
