/* ============================================
   VIBRAZOZA - LIQUID GLASS DESIGN SYSTEM
   Mobile Game Website
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Primary Colors */
    --primary: #0c1445;
    --primary-deep: #060a2e;
    --primary-mid: #111b5e;
    --primary-light: #1a2670;
    
    /* Secondary & Accent */
    --secondary: #ffffff;
    --accent: #7dd3fc;
    --accent-bright: #a5e1ff;
    --accent-dim: #4fb8e8;
    --accent-glow: rgba(125, 211, 252, 0.4);
    
    /* Glass Colors */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(125, 211, 252, 0.3);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    /* Chromatic */
    --chroma-1: rgba(125, 211, 252, 0.5);
    --chroma-2: rgba(167, 139, 250, 0.5);
    --chroma-3: rgba(251, 146, 60, 0.3);
    --chroma-4: rgba(52, 211, 153, 0.4);
    
    /* Iridescent Gradient */
    --iridescent: linear-gradient(135deg, 
        rgba(125, 211, 252, 0.6), 
        rgba(167, 139, 250, 0.6), 
        rgba(251, 146, 60, 0.4), 
        rgba(52, 211, 153, 0.5), 
        rgba(125, 211, 252, 0.6));
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-dark: #1a1a2e;
    
    /* 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;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;
    
    /* Fonts */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-med: 0.4s var(--ease-out-expo);
    --transition-slow: 0.7s var(--ease-out-expo);
    
    /* Z-index */
    --z-base: 1;
    --z-header: 100;
    --z-modal: 1000;
    --z-cookie: 900;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--primary-deep);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(125, 211, 252, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(52, 211, 153, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, 
            #060a2e 0%, 
            #0c1445 15%, 
            #14174e 30%, 
            #1a1060 45%, 
            #150d4f 60%, 
            #0d1a3d 75%, 
            #082a35 90%, 
            #0a2e3a 100%);
    z-index: -2;
    pointer-events: none;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

::selection {
    background: rgba(125, 211, 252, 0.3);
    color: var(--text-primary);
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(125, 211, 252, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(125, 211, 252, 0.5);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- UTILITY CLASSES ---------- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #60a5fa, var(--accent-dim));
    color: var(--primary-deep);
    box-shadow: 
        0 4px 20px rgba(125, 211, 252, 0.3),
        0 0 0 1px rgba(125, 211, 252, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(125, 211, 252, 0.45),
        0 0 0 1px rgba(125, 211, 252, 0.4);
    color: var(--primary-deep);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent, transparent);
    animation: glowRotate 3s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-med);
}

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

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

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

.btn-glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    color: var(--text-primary);
    box-shadow: 
        0 4px 20px rgba(125, 211, 252, 0.15),
        inset 0 0 20px rgba(125, 211, 252, 0.05);
}

/* ---------- AGE MODAL ---------- */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-modal-card {
    position: relative;
    max-width: 480px;
    width: 100%;
    padding: var(--space-3xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    text-align: center;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        2px 0 15px var(--chroma-1),
        -2px 0 15px var(--chroma-2),
        0 2px 15px var(--chroma-4);
    animation: modalFloat 0.6s var(--ease-out-back);
}

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

.age-modal-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-2xl);
    background: var(--iridescent);
    background-size: 400% 400%;
    animation: iridShimmer 6s ease infinite;
    opacity: 0.15;
    z-index: -1;
}

@keyframes iridShimmer {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 0%; }
    75% { background-position: 0% 100%; }
}

.age-modal-content .age-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(167, 139, 250, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    border: 1px solid rgba(125, 211, 252, 0.2);
}

.age-modal-content h2 {
    margin-bottom: var(--space-md);
    font-size: 1.6rem;
}

.age-modal-content > p {
    margin-bottom: var(--space-xl);
    font-size: 0.95rem;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.btn-age {
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-med);
}

.btn-age-yes {
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    color: var(--primary-deep);
    box-shadow: 0 4px 20px rgba(125, 211, 252, 0.3);
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(125, 211, 252, 0.45);
}

.btn-age-no {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.btn-age-no:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.age-disclaimer {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
}

.age-disclaimer a {
    color: var(--accent);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-cookie);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(12, 20, 69, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid var(--glass-border);
    transform: translateY(0);
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    color: var(--primary-deep);
}

.btn-cookie-accept:hover {
    box-shadow: 0 4px 16px rgba(125, 211, 252, 0.4);
    transform: translateY(-1px);
}

.btn-cookie-essential {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-cookie-essential:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-cookie-decline:hover {
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ---------- NAVIGATION ---------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: var(--space-md) 0;
    transition: all var(--transition-med);
}

.main-header.scrolled {
    background: rgba(6, 10, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-primary);
    z-index: 10;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    color: var(--primary-deep);
    font-size: 1.2rem;
    box-shadow: 0 2px 12px rgba(125, 211, 252, 0.3);
}

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

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

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-link-cta {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.15), rgba(96, 165, 250, 0.15)) !important;
    border: 1px solid rgba(125, 211, 252, 0.2);
    color: var(--accent) !important;
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.25), rgba(96, 165, 250, 0.25)) !important;
    border-color: rgba(125, 211, 252, 0.4);
    box-shadow: 0 2px 12px rgba(125, 211, 252, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-med);
    transform-origin: center;
}

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

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ---------- HERO SECTION ---------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px var(--space-xl) var(--space-4xl);
}

.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: var(--radius-blob);
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 15s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.3), transparent);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.25), transparent);
    bottom: 10%;
    left: -8%;
    animation-delay: -5s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2), transparent);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    border-radius: 50% 50% 40% 60% / 35% 60% 40% 65%;
}

.blob-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.15), transparent);
    top: 20%;
    right: 25%;
    animation-delay: -7s;
    border-radius: 35% 65% 55% 45% / 55% 40% 60% 45%;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -40px) scale(1.05) rotate(5deg); }
    50% { transform: translate(-20px, 20px) scale(0.95) rotate(-3deg); }
    75% { transform: translate(15px, 30px) scale(1.02) rotate(2deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    flex: none;
    max-width: 600px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.2rem;
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: var(--radius-2xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s both;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent), #a78bfa, var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.35s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.65s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}

.phone-mockup {
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-frame {
    width: 260px;
    height: 520px;
    background: rgba(15, 15, 40, 0.9);
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        3px 0 20px var(--chroma-1),
        -3px 0 20px var(--chroma-2),
        0 3px 20px var(--chroma-4),
        inset 0 0 30px rgba(125, 211, 252, 0.05);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.phone-screen {
    padding: 10px 14px;
    height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
}

.screen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.game-ui-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-bar {
    height: 22px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 2s ease;
}

.health-fill {
    width: 75%;
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.mana-fill {
    width: 60%;
    background: linear-gradient(90deg, #3b82f6, var(--accent));
}

.bar-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 4px;
}

.bar-label i {
    font-size: 0.55rem;
}

.game-character {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.character-body {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-aura {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.3), transparent);
    animation: auraPulse 2s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.character-icon {
    font-size: 2.5rem;
    color: var(--accent);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.5));
}

.character-name {
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
}

.game-ui-bottom {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.action-btn-game {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
}

.action-btn-game.action-main {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.3), rgba(96, 165, 250, 0.3));
    border-color: rgba(125, 211, 252, 0.3);
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: -4px;
}

.phone-reflection {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 40%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 30px;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 1s var(--ease-out-expo) 1s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 0.8; height: 50px; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ---------- SOCIAL PROOF BAR ---------- */
.social-proof-bar {
    position: relative;
    z-index: 3;
    padding: var(--space-lg) 0;
    background: rgba(12, 20, 69, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
}

.proof-item strong {
    color: var(--accent);
    font-weight: 700;
}

.live-dot {
    font-size: 0.5rem;
    color: #22c55e;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.proof-pulse {
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scale(2); opacity: 0; }
}

.proof-divider {
    width: 1px;
    height: 24px;
    background: var(--glass-border);
}

.proof-item i.fa-user-plus {
    color: var(--accent);
}

.proof-item i.fa-clock {
    color: #fbbf24;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: rgba(125, 211, 252, 0.08);
    border: 1px solid rgba(125, 211, 252, 0.15);
    border-radius: var(--radius-2xl);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
}

.section-tag i {
    font-size: 0.75rem;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    max-width: 550px;
    margin: 0 auto;
}

/* ---------- FEATURES SECTION ---------- */
.features-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

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

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all var(--transition-med);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--iridescent);
    background-size: 400% 100%;
    animation: iridShimmer 6s ease infinite;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.feature-card:hover::before {
    opacity: 0.7;
}

.feature-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        2px 0 12px var(--chroma-1),
        -2px 0 12px var(--chroma-2);
}

.feature-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(125, 211, 252, 0.03), transparent 50%);
    pointer-events: none;
    transition: opacity var(--transition-med);
    opacity: 0;
}

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

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

.feature-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.15), rgba(167, 139, 250, 0.15));
    border: 1px solid rgba(125, 211, 252, 0.1);
}

.feature-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.92rem;
    margin-bottom: var(--space-md);
}

.feature-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.15);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    z-index: 0;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), rgba(167, 139, 250, 0.5), var(--accent));
    opacity: 0.2;
    border-radius: 2px;
}

.connector-glow {
    position: absolute;
    top: 0;
    left: -3px;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(125, 211, 252, 0.15), transparent);
    filter: blur(4px);
}

.step-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all var(--transition-med);
}

.step-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateX(8px);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.25),
        2px 0 10px var(--chroma-1),
        -2px 0 10px var(--chroma-2);
}

.step-number {
    position: relative;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.step-number-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(125, 211, 252, 0.2);
    background: rgba(125, 211, 252, 0.05);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.92rem;
}

.step-visual {
    flex-shrink: 0;
}

.step-icon-float {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(125, 211, 252, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    animation: iconFloat 4s ease-in-out infinite;
}

.step-card:nth-child(3) .step-icon-float { animation-delay: -1.3s; }
.step-card:nth-child(4) .step-icon-float { animation-delay: -2.6s; }

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

/* ---------- SHOWCASE SECTION ---------- */
.showcase-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.showcase-main {
    grid-row: span 2;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
    transition: all var(--transition-med);
}

.showcase-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        2px 0 12px var(--chroma-1),
        -2px 0 12px var(--chroma-2);
}

.showcase-visual {
    padding: var(--space-2xl);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-main .showcase-visual {
    min-height: 340px;
}

.showcase-info {
    padding: var(--space-lg) var(--space-2xl) var(--space-2xl);
}

.showcase-info h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.showcase-info p {
    font-size: 0.88rem;
}

/* Showcase Scenes */
.showcase-scene {
    width: 100%;
    position: relative;
}

.scene-battle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-xl);
}

.scene-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(125, 211, 252, 0.06), transparent);
}

.scene-char {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scene-char i {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.4));
}

.scene-char-left i { color: var(--accent); }
.scene-char-right i { color: #ef4444; }

.char-health-mini {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.char-health-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.enemy-fill {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.scene-vs {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 2;
}

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

.effect-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    animation: sparkFly 2s ease-in-out infinite;
}

.spark-1 { top: 30%; left: 45%; animation-delay: 0s; }
.spark-2 { top: 50%; left: 55%; animation-delay: -0.7s; }
.spark-3 { top: 40%; left: 50%; animation-delay: -1.4s; }

@keyframes sparkFly {
    0% { opacity: 0; transform: scale(0) translate(0, 0); }
    50% { opacity: 1; transform: scale(1.5) translate(10px, -15px); }
    100% { opacity: 0; transform: scale(0) translate(20px, -30px); }
}

/* Base Scene */
.scene-base {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 150px;
}

.scene-bg-base {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(167, 139, 250, 0.08), transparent);
}

.base-tower {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(167, 139, 250, 0.6);
    z-index: 2;
}

.tower-1 { left: 15%; top: 30%; }
.tower-2 { right: 15%; top: 30%; }

.base-wall {
    position: absolute;
    bottom: 25%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.3), transparent);
    border-radius: 3px;
}

.base-center {
    font-size: 2rem;
    color: #fbbf24;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.4));
    animation: crownPulse 3s ease-in-out infinite;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Inventory Scene */
.scene-inventory {
    display: flex;
    justify-content: center;
}

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

.inv-slot {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.inv-slot:hover {
    transform: scale(1.1);
}

.inv-common {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
    border-color: rgba(156, 163, 175, 0.2);
}

.inv-rare {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.2);
}

.inv-epic {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.2);
}

.inv-legendary {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.15);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all var(--transition-med);
}

.testimonial-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.25),
        2px 0 10px var(--chroma-1),
        -2px 0 10px var(--chroma-2);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-md);
}

.testimonial-stars i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(167, 139, 250, 0.2));
    border: 1px solid rgba(125, 211, 252, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

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

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

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
    transition: all var(--transition-med);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: var(--glass-border-hover);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.2),
        1px 0 8px var(--chroma-1),
        -1px 0 8px var(--chroma-2);
}

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

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

.faq-arrow {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform var(--transition-med), color var(--transition-fast);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
    padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---------- REGISTER SECTION ---------- */
.register-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.register-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blob-r1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.15), transparent);
    top: -20%;
    right: -10%;
    animation-delay: -3s;
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
}

.blob-r2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.12), transparent);
    bottom: -15%;
    left: -5%;
    animation-delay: -8s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.register-info {
    max-width: 500px;
}

.register-info .section-tag {
    margin-bottom: var(--space-lg);
}

.register-info .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.register-info > p {
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

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

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #22c55e;
    flex-shrink: 0;
}

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

.register-trust .trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.register-trust .trust-item i {
    color: var(--accent);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

/* Form Card */
.register-form-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        3px 0 18px var(--chroma-1),
        -3px 0 18px var(--chroma-2),
        0 3px 18px var(--chroma-4);
}

.form-card-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-2xl);
    background: var(--iridescent);
    background-size: 400% 400%;
    animation: iridShimmer 8s ease infinite;
    opacity: 0.1;
    z-index: -1;
}

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

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.form-group label i {
    font-size: 0.8rem;
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    border-color: var(--accent);
    background: rgba(125, 211, 252, 0.05);
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1);
}

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

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

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #f87171;
    margin-top: 4px;
    min-height: 0;
    transition: all var(--transition-fast);
}

/* Checkboxes */
.form-checkbox-group {
    margin-bottom: var(--space-md);
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: var(--space-sm) !important;
    cursor: pointer;
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: transparent;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    border-color: var(--accent);
    color: var(--primary-deep);
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.15);
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: var(--space-md);
}

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

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

.btn-submit.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Success & Error Messages */
.form-success-message,
.form-error-message {
    text-align: center;
    padding: var(--space-2xl);
}

.success-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: var(--space-md);
}

.error-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: var(--space-md);
}

.form-success-message h3,
.form-error-message h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.form-success-message p {
    color: var(--text-secondary);
}

.form-error-message p {
    color: var(--text-secondary);
}

/* ---------- TRUST SECTION ---------- */
.trust-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

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

.trust-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all var(--transition-med);
}

.trust-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.15), rgba(167, 139, 250, 0.15));
    border: 1px solid rgba(125, 211, 252, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.trust-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.trust-card p {
    font-size: 0.88rem;
}

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

/* ---------- FOOTER ---------- */
.main-footer {
    position: relative;
    padding-top: var(--space-4xl);
    border-top: 1px solid var(--glass-border);
    background: rgba(6, 10, 46, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(125, 211, 252, 0.1);
    border-color: rgba(125, 211, 252, 0.2);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links-group a,
.footer-links-group span {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.footer-links-group i {
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
    color: var(--accent);
    opacity: 0.6;
}

.footer-address {
    color: var(--text-muted) !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

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

.footer-bottom-right {
    display: flex;
    gap: var(--space-sm);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-badge i {
    font-size: 0.65rem;
    color: var(--accent);
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
    padding-top: 80px;
}

.legal-hero {
    position: relative;
    padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
    text-align: center;
    overflow: hidden;
}

.legal-hero h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.legal-hero h1 i {
    color: var(--accent);
    font-size: 0.8em;
}

.legal-hero p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    min-height: 60vh;
}

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

.legal-content section {
    margin-bottom: var(--space-2xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(125, 211, 252, 0.3);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

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

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

.legal-content ul {
    list-style: disc;
}

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

.legal-content li {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

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

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

.legal-content strong {
    font-weight: 600;
    color: #1f2937;
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

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

/* GDPR Rights styling */
.gdpr-right {
    padding: var(--space-xl);
    background: #f9fafb;
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
    margin-bottom: var(--space-xl) !important;
}

.gdpr-right-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(96, 165, 250, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-dim);
    flex-shrink: 0;
}

.gdpr-right h3 {
    margin-bottom: 0 !important;
    font-size: 1.05rem !important;
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

/* Stagger delays for grid items */
.features-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.features-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.features-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.features-grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.features-grid [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
.features-grid [data-reveal]:nth-child(6) { transition-delay: 0.40s; }

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

.trust-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.trust-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.trust-grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.trust-grid [data-reveal]:nth-child(4) { transition-delay: 0.24s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3xl);
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

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

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

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

    .showcase-main {
        grid-row: span 1;
    }

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

    .register-info {
        max-width: 100%;
        text-align: center;
    }

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

    .register-benefits {
        align-items: flex-start;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(6, 10, 46, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out-expo);
        border-left: 1px solid var(--glass-border);
        z-index: 5;
        gap: var(--space-sm);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

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

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

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

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

    .step-connector {
        display: none;
    }

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

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

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

    .proof-container {
        flex-direction: column;
        gap: var(--space-md);
    }

    .proof-divider {
        display: none;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .cookie-inner {
        flex-direction: column;
        gap: var(--space-md);
    }

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-actions .btn-cookie {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

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

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

    .phone-frame {
        width: 190px;
        height: 380px;
    }

    .age-modal-card {
        padding: var(--space-2xl);
    }
}

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

    .blob {
        animation: none !important;
    }

    .phone-mockup {
        animation: none !important;
    }

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

/* ---------- FOCUS STYLES ---------- */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- PRINT ---------- */
@media print {
    .main-header,
    .cookie-banner,
    .age-modal-overlay,
    .hero-bg-blobs,
    .register-bg-blobs,
    .scroll-indicator,
    .social-proof-bar {
        display: none !important;
    }

    body::before,
    body::after {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }
}
```

Now the JavaScript file:

```js