/* ============================================================
   FLOWERIQE - Holographic Design System
   Mobile Game Landing Page
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Core Colors */
    --primary: #667eea;
    --primary-dark: #5a6fd6;
    --primary-light: #8b9df0;
    --secondary: #f0f0f0;
    --accent: #f093fb;
    --accent-dark: #d67ae0;

    /* Holographic Palette */
    --holo-1: #667eea;
    --holo-2: #764ba2;
    --holo-3: #f093fb;
    --holo-4: #5ee7df;
    --holo-5: #b8cbb8;
    --holo-6: #f6d365;
    --holo-7: #fda085;
    --holo-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 20%, #f093fb 40%, #5ee7df 60%, #f6d365 80%, #fda085 100%);
    --holo-gradient-animated: linear-gradient(270deg, #667eea, #764ba2, #f093fb, #5ee7df, #f6d365, #fda085, #667eea);
    --holo-conic: conic-gradient(from 0deg, #667eea, #764ba2, #f093fb, #5ee7df, #f6d365, #fda085, #667eea);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafbff;
    --light-gray: #f0f2f8;
    --mid-gray: #9ca3af;
    --dark-gray: #4b5563;
    --charcoal: #1f2937;
    --near-black: #111827;

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', 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;

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(102, 126, 234, 0.08);
    --shadow-md: 0 4px 16px rgba(102, 126, 234, 0.12);
    --shadow-lg: 0 8px 32px rgba(102, 126, 234, 0.16);
    --shadow-xl: 0 16px 48px rgba(102, 126, 234, 0.2);
    --shadow-holo: 0 8px 32px rgba(240, 147, 251, 0.2), 0 4px 16px rgba(102, 126, 234, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

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

/* ---- Keyframe Animations ---- */
@keyframes holoShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes holoRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-1deg); }
}

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

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

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

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, -60px) scale(0.95); }
    75% { transform: translate(40px, -20px) scale(1.05); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 30px) scale(1.05); }
    50% { transform: translate(30px, 50px) scale(0.9); }
    75% { transform: translate(-20px, 20px) scale(1.1); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, 40px) scale(0.95); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
    75% { transform: translate(10px, -50px) scale(1); }
}

@keyframes borderRotate {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.3), 0 0 80px rgba(240, 147, 251, 0.15); }
    50% { box-shadow: 0 0 60px rgba(102, 126, 234, 0.5), 0 0 120px rgba(240, 147, 251, 0.25); }
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes gridCellPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes counterTick {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes successBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

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

/* ---- Holographic Text ---- */
.holographic-text {
    background: var(--holo-gradient-animated);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoShift 6s ease infinite;
}

/* ---- Utility Classes ---- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(240, 147, 251, 0.08));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--near-black);
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.45);
}

.btn-holographic {
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 4s ease infinite;
    color: var(--white);
    box-shadow: var(--shadow-holo);
}

.btn-holographic:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 147, 251, 0.3), 0 6px 20px rgba(102, 126, 234, 0.25);
    color: var(--white);
}

.btn-secondary {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid transparent;
    border-image: var(--holo-gradient) 1;
    box-shadow: 0 -4px 30px rgba(102, 126, 234, 0.15);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

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

.cookie-inner {
    max-width: var(--container-max);
    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: 300px;
}

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

.cookie-text p {
    font-size: 0.88rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.cookie-text p:first-child {
    color: var(--near-black);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

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

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

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 4s ease infinite;
    color: var(--white);
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.3);
}

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

.btn-cookie-essential {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.btn-cookie-essential:hover {
    background: rgba(102, 126, 234, 0.15);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--mid-gray);
}

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

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.cookie-settings-panel h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: var(--space-md);
}

.cookie-option {
    margin-bottom: var(--space-md);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.82rem;
    color: var(--mid-gray);
    margin-left: 28px;
    margin-top: 2px;
}

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

/* ============================================================
   AGE VERIFICATION MODAL
   ============================================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.age-modal.visible {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    position: relative;
    max-width: 460px;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.age-modal-holographic-border {
    position: absolute;
    inset: 0;
    background: var(--holo-gradient-animated);
    background-size: 400% 400%;
    animation: holoShift 4s ease infinite;
    border-radius: var(--radius-xl);
}

.age-modal-inner {
    position: relative;
    margin: 3px;
    background: var(--white);
    border-radius: calc(var(--radius-xl) - 3px);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.age-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    font-size: 2rem;
    color: var(--primary);
}

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

.age-modal-inner p {
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
}

.age-note {
    font-size: 0.85rem;
    color: var(--mid-gray) !important;
    margin-bottom: var(--space-xl) !important;
}

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

.btn-age {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.btn-age-yes {
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 4s ease infinite;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.btn-age-no {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.btn-age-no:hover {
    background: rgba(239, 68, 68, 0.15);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.08);
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.1);
    border-bottom-color: rgba(102, 126, 234, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 5s ease infinite;
    color: var(--white);
    font-size: 1.1rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--near-black);
    letter-spacing: -0.02em;
}

.logo-accent {
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoShift 5s ease infinite;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--dark-gray);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(102, 126, 234, 0.06);
}

.nav-link.nav-cta {
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 4s ease infinite;
    color: var(--white);
    padding: 10px 24px;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.25);
}

.nav-link.nav-cta:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
}

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    padding: calc(var(--header-height) + var(--space-3xl)) clamp(1rem, 5vw, 3rem) var(--space-3xl);
    overflow: hidden;
    background: linear-gradient(180deg, var(--off-white) 0%, rgba(102, 126, 234, 0.03) 50%, var(--off-white) 100%);
    width: 100%;
    box-sizing: border-box;
}

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

.holographic-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.5), transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.4), transparent 70%);
    bottom: 10%;
    left: -8%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 231, 223, 0.35), transparent 70%);
    top: 40%;
    left: 50%;
    animation: orbFloat3 12s ease-in-out infinite;
}

.prismatic-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    max-width: 600px;
    min-width: 0;
    animation: slideUp 0.8s var(--ease-out) both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    animation: slideDown 0.6s var(--ease-out) 0.2s both;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    font-family: var(--font-display);
    line-height: 1.1;
}

.title-line-1 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--dark-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    animation: slideUp 0.8s var(--ease-out) 0.3s both;
}

.title-line-2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
    animation: slideUp 0.8s var(--ease-out) 0.4s both;
}

.title-line-3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--charcoal);
    animation: slideUp 0.8s var(--ease-out) 0.5s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    animation: slideUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: slideUp 0.8s var(--ease-out) 0.7s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: slideUp 0.8s var(--ease-out) 0.8s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--near-black);
    line-height: 1.2;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.3), transparent);
}

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

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 36px;
    padding: 12px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: phonePulse 4s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 38px;
    background: var(--holo-gradient-animated);
    background-size: 400% 400%;
    animation: holoShift 4s ease infinite;
    z-index: -1;
    opacity: 0.6;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 28px);
    background: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    padding: 16px;
}

/* Game UI Mock */
.game-ui-mock {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.game-score {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: #f6d365;
}

.game-level {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.game-lives {
    display: flex;
    gap: 3px;
    font-size: 0.6rem;
    color: #ef4444;
}

.game-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    padding: 8px;
}

.grid-cell {
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.gc-1 { background: linear-gradient(135deg, #667eea, #764ba2); animation: gridCellPulse 3s ease 0s infinite; }
.gc-2 { background: linear-gradient(135deg, #f093fb, #f5576c); animation: gridCellPulse 3s ease 0.2s infinite; }
.gc-3 { background: linear-gradient(135deg, #5ee7df, #667eea); animation: gridCellPulse 3s ease 0.4s infinite; }
.gc-4 { background: linear-gradient(135deg, #f6d365, #fda085); animation: gridCellPulse 3s ease 0.6s infinite; }
.gc-5 { background: linear-gradient(135deg, #fda085, #f5576c); animation: gridCellPulse 3s ease 0.8s infinite; }
.gc-6 { background: linear-gradient(135deg, #764ba2, #f093fb); animation: gridCellPulse 3s ease 1s infinite; }
.gc-7 { background: linear-gradient(135deg, #f6d365, #5ee7df); animation: gridCellPulse 3s ease 1.2s infinite; }
.gc-8 { background: linear-gradient(135deg, #667eea, #5ee7df); animation: gridCellPulse 3s ease 1.4s infinite; }
.gc-9 { background: linear-gradient(135deg, #5ee7df, #f6d365); animation: gridCellPulse 3s ease 1.6s infinite; }
.gc-10 { background: linear-gradient(135deg, #f5576c, #fda085); animation: gridCellPulse 3s ease 1.8s infinite; }
.gc-11 { background: linear-gradient(135deg, #fda085, #667eea); animation: gridCellPulse 3s ease 2s infinite; }
.gc-12 { background: linear-gradient(135deg, #f093fb, #764ba2); animation: gridCellPulse 3s ease 2.2s infinite; }
.gc-13 { background: linear-gradient(135deg, #764ba2, #5ee7df); animation: gridCellPulse 3s ease 2.4s infinite; }
.gc-14 { background: linear-gradient(135deg, #f6d365, #f093fb); animation: gridCellPulse 3s ease 2.6s infinite; }
.gc-15 { background: linear-gradient(135deg, #667eea, #f5576c); animation: gridCellPulse 3s ease 2.8s infinite; }
.gc-16 { background: linear-gradient(135deg, #5ee7df, #764ba2); animation: gridCellPulse 3s ease 3s infinite; }

.game-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.game-btn-mock {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.game-btn-main {
    width: 52px;
    height: 52px;
    background: var(--holo-gradient);
    color: var(--white);
    font-size: 1rem;
}

.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15), transparent 70%);
    z-index: -2;
    border-radius: 50%;
}

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

.scroll-indicator span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid-gray);
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    padding: var(--space-4xl) 0;
    position: relative;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 50%, var(--off-white) 100%);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2), transparent);
}

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

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-normal);
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.15);
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 4s ease infinite;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.feature-icon-wrap {
    margin-bottom: var(--space-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(240, 147, 251, 0.08));
    font-size: 1.4rem;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 3s ease infinite;
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.feature-tag {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(240, 147, 251, 0.06));
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ============================================================
   ABOUT / HOW IT WORKS SECTION
   ============================================================ */
.about {
    padding: var(--space-4xl) 0;
    position: relative;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-device {
    position: relative;
}

.tablet-frame {
    width: 380px;
    height: 280px;
    background: linear-gradient(145deg, #e8eaf6, #f5f5f5);
    border-radius: var(--radius-xl);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.tablet-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: var(--holo-gradient-animated);
    background-size: 400% 400%;
    animation: holoShift 5s ease infinite;
    z-index: -1;
    opacity: 0.4;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0c29, #302b63);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tablet-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.flow-diagram {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.flow-step-1 .flow-icon { background: linear-gradient(135deg, #667eea, #764ba2); animation-delay: 0s; }
.flow-step-2 .flow-icon { background: linear-gradient(135deg, #f093fb, #f5576c); animation-delay: 0.5s; }
.flow-step-3 .flow-icon { background: linear-gradient(135deg, #5ee7df, #667eea); animation-delay: 1s; }
.flow-step-4 .flow-icon { background: linear-gradient(135deg, #f6d365, #fda085); animation-delay: 1.5s; }

.flow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    min-width: 16px;
}

.about-floating-badge {
    position: absolute;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    animation: floatSlow 4s ease-in-out infinite;
}

.badge-1 {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.badge-1 i { color: #f6d365; }

.badge-2 {
    bottom: -10px;
    left: -20px;
    animation-delay: 1.5s;
}

.badge-2 i { color: #5ee7df; }

.about-content .section-tag {
    display: inline-flex;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-2xl);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.step-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid rgba(102, 126, 234, 0.05);
    transition: all var(--transition-normal);
}

.step-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(102, 126, 234, 0.12);
    transform: translateX(8px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoShift 5s ease infinite;
    line-height: 1;
    flex-shrink: 0;
}

.step-info h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.88rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ============================================================
   SOCIAL PROOF / COMMUNITY SECTION
   ============================================================ */
.social-proof {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, rgba(102, 126, 234, 0.02) 50%, var(--off-white) 100%);
    position: relative;
}

/* Live Counters */
.live-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.counter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.counter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.15);
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--holo-gradient-animated);
    background-size: 300% 300%;
    animation: holoShift 4s ease infinite;
}

.counter-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.counter-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--near-black);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.counter-label {
    font-size: 0.8rem;
    color: var(--mid-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

/* Activity Feed */
.activity-feed {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(102, 126, 234, 0.08);
    margin-bottom: var(--space-3xl);
    max-height: 300px;
    overflow: hidden;
}

.feed-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    flex-shrink: 0;
}

.live-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 2s ease-in-out infinite;
}

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

.feed-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    background: var(--off-white);
    animation: slideUp 0.4s var(--ease-out) both;
    font-size: 0.88rem;
}

.feed-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
    flex-shrink: 0;
}

.feed-item-icon.type-signup { background: linear-gradient(135deg, #667eea, #764ba2); }
.feed-item-icon.type-play { background: linear-gradient(135deg, #5ee7df, #667eea); }
.feed-item-icon.type-level { background: linear-gradient(135deg, #f6d365, #fda085); }
.feed-item-icon.type-score { background: linear-gradient(135deg, #f093fb, #f5576c); }

.feed-item-text {
    flex: 1;
    color: var(--dark-gray);
}

.feed-item-text strong {
    color: var(--near-black);
}

.feed-item-time {
    font-size: 0.75rem;
    color: var(--mid-gray);
    flex-shrink: 0;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--holo-gradient-animated);
    background-size: 400% 400%;
    animation: holoShift 6s ease infinite;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.testimonial-card:hover::before {
    opacity: 0.03;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-holo);
    border-color: rgba(240, 147, 251, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-md);
    color: #f6d365;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--near-black);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--mid-gray);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    border: 1px solid rgba(102, 126, 234, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    background: var(--white);
}

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

.faq-item.active {
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--near-black);
    text-align: left;
    transition: all var(--transition-fast);
    background: transparent;
}

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

.faq-icon {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

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

/* ============================================================
   SIGNUP / LEAD FORM SECTION
   ============================================================ */
.signup {
    padding: var(--space-4xl) 0;
    position: relative;
    background: linear-gradient(180deg, var(--off-white) 0%, rgba(102, 126, 234, 0.04) 50%, var(--off-white) 100%);
}

.signup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.signup-info .section-tag {
    display: inline-flex;
}

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

.signup-desc {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    border: 1px solid rgba(102, 126, 234, 0.1);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badge i {
    color: var(--accent);
}

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

.form-holographic-border {
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-xl) + 3px);
    background: var(--holo-gradient-animated);
    background-size: 400% 400%;
    animation: holoShift 5s ease infinite;
    opacity: 0.5;
    z-index: 0;
}

.signup-form {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--near-black);
    margin-bottom: var(--space-xl);
    text-align: center;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--near-black);
    background: var(--off-white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.08);
}

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

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 18px;
}

/* Checkbox */
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--dark-gray);
    line-height: 1.5;
}

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

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

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--mid-gray);
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.form-note i {
    color: #22c55e;
}

/* Submit button loader */
.btn-loader {
    margin-left: var(--space-sm);
}

/* Success Message */
.form-success {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: var(--space-lg);
    animation: successBounce 0.6s var(--ease-out) both;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--near-black);
    margin-bottom: var(--space-md);
}

.form-success p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.success-note {
    font-size: 0.85rem !important;
    color: var(--mid-gray) !important;
}

/* ============================================================
   RESPONSIBLE GAMING SECTION
   ============================================================ */
.responsible-gaming {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.rg-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(240, 147, 251, 0.03));
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.rg-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.rg-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--near-black);
    margin-bottom: var(--space-md);
}

.rg-content > p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.rg-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.rg-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
}

.rg-item i {
    color: var(--primary);
    font-size: 1rem;
}

.rg-contact {
    font-size: 0.88rem;
    color: var(--mid-gray);
}

.rg-contact a {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: var(--near-black);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--holo-gradient-animated);
    background-size: 400% 400%;
    animation: holoShift 4s ease infinite;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: var(--space-md);
    display: inline-flex;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-brand > p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--holo-gradient);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

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

.footer-links-group a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.footer-links-group a i {
    font-size: 0.8rem;
    color: var(--accent);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-badge i {
    color: var(--accent);
}

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

.footer-address {
    margin-bottom: var(--space-sm);
}

.footer-address p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.footer-address i {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
    background: var(--off-white);
}

.legal-hero {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04), rgba(240, 147, 251, 0.04));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--near-black);
    margin-bottom: var(--space-md);
}

.legal-hero p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.legal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(102, 126, 234, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--near-black);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.legal-content li {
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    list-style: disc;
}

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

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

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

.legal-content .contact-info {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04), rgba(240, 147, 251, 0.04));
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.legal-content .contact-info p {
    margin-bottom: var(--space-xs);
}

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

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        flex-wrap: nowrap;
        text-align: center;
        padding-bottom: var(--space-4xl);
        gap: var(--space-2xl);
    }

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

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

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

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

    .about-visual {
        order: -1;
    }

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

    .steps-list {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .signup-benefits {
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
    }

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-sm);
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

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

    .nav-link.nav-cta {
        text-align: center;
        justify-content: center;
        margin-top: var(--space-md);
    }

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

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

    .live-counters {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .footer-badges {
        gap: var(--space-sm);
    }

    .legal-content {
        padding: var(--space-xl);
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

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

    .age-buttons {
        flex-direction: column;
    }

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

    .tablet-frame {
        width: 300px;
        height: 220px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 1.25rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3.5rem;
    }

    .hero-visual .phone-frame {
        width: 180px;
        height: 360px;
    }

    .live-counters {
        grid-template-columns: 1fr;
    }

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

    .signup-form {
        padding: var(--space-xl);
    }

    .legal-content {
        padding: var(--space-lg);
    }
}

/* ---- Focus / Accessibility ---- */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---- Print Styles ---- */
@media print {
    .main-header,
    .cookie-banner,
    .age-modal,
    .hero-bg-effects,
    .hero-visual,
    .scroll-indicator {
        display: none !important;
    }

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

    .holographic-text {
        -webkit-text-fill-color: #667eea;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
