/* ========================================
   VARIABLES & BASE
   ======================================== */

:root {
    /* Primary Palette */
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7dff;
    --primary-glow: rgba(109, 93, 252, 0.3);

    /* Secondary / Background */
    --bg: #e0e5ec;
    --bg-dark: #c8cdd5;
    --bg-darker: #b0b5bd;
    --bg-light: #f0f5fc;
    --bg-lighter: #ffffff;

    /* Accent */
    --accent: #ff6b9d;
    --accent-dark: #d4547f;
    --accent-light: #ff8fb3;
    --accent-glow: rgba(255, 107, 157, 0.3);

    /* Neumorphism Shadows */
    --shadow-dark: rgba(163, 168, 178, 0.7);
    --shadow-light: rgba(255, 255, 255, 0.8);
    --shadow-dark-strong: rgba(140, 145, 155, 0.8);
    --shadow-light-strong: rgba(255, 255, 255, 0.95);

    /* Neumorphic presets */
    --neu-flat: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --neu-raised: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    --neu-pressed: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
    --neu-subtle: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --neu-intense: 12px 12px 24px var(--shadow-dark-strong), -12px -12px 24px var(--shadow-light-strong);

    /* Text */
    --text-primary: #2d3142;
    --text-secondary: #5c6178;
    --text-muted: #8a8fa3;
    --text-on-primary: #ffffff;

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

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-base: 1;
    --z-header: 100;
    --z-modal: 1000;
    --z-toast: 1100;
    --z-cookie: 1200;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

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

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

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-primary);
    box-shadow: 6px 6px 14px var(--shadow-dark), -4px -4px 10px var(--shadow-light), 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 8px 8px 18px var(--shadow-dark), -6px -6px 14px var(--shadow-light), 0 8px 30px var(--primary-glow);
    color: var(--text-on-primary);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--neu-pressed), 0 2px 10px var(--primary-glow);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text-primary);
    box-shadow: var(--neu-raised);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neu-intense);
    color: var(--primary);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: var(--neu-pressed);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: var(--bg);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    padding: var(--space-lg);
    animation: slideUpBanner 0.5s ease forwards;
}

@keyframes slideUpBanner {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.cookie-text p {
    font-size: 0.85rem;
    margin: 0;
}

.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-md);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    box-shadow: 4px 4px 8px var(--shadow-dark), -2px -2px 6px var(--shadow-light);
}

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

.btn-cookie-necessary {
    background: var(--bg);
    color: var(--text-primary);
    box-shadow: var(--neu-subtle);
}

.btn-cookie-necessary:hover {
    box-shadow: var(--neu-raised);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-secondary);
    text-decoration: underline;
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: var(--space-md) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-dark);
}

.cookie-setting-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: var(--space-md);
}

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

.cookie-setting-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 24px;
}

/* ========================================
   AGE GATE
   ======================================== */

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--z-cookie) + 10);
    background: rgba(45, 49, 66, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: fadeInOverlay 0.4s ease;
}

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

.age-gate-modal {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-intense);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    max-width: 480px;
    width: 100%;
    animation: scaleIn 0.4s ease 0.1s both;
}

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

.age-gate-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.age-gate-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-raised);
}

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

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

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

.btn-age {
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.btn-age-yes {
    background: var(--primary);
    color: white;
    box-shadow: 4px 4px 10px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
}

.btn-age-yes:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
}

.btn-age-no {
    background: var(--bg);
    color: var(--text-secondary);
    box-shadow: var(--neu-subtle);
}

.btn-age-no:hover {
    box-shadow: var(--neu-raised);
}

.age-gate-note {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin-top: var(--space-lg) !important;
    margin-bottom: 0 !important;
}

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

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

.main-header.scrolled {
    background: rgba(224, 229, 236, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: var(--space-sm) 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    color: var(--primary);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.nav-logo:hover .logo-icon {
    box-shadow: var(--neu-pressed);
    color: var(--accent);
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px var(--primary-glow);
    transition: all var(--transition-normal);
}

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

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    color: white !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.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-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(109, 93, 252, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(109, 93, 252, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating shapes */
.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.shape-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 10%;
    animation-delay: -3s;
    animation-duration: 22s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 8%;
    animation-delay: -7s;
    animation-duration: 25s;
    border-radius: var(--radius-xl);
}

.shape-4 {
    width: 40px;
    height: 40px;
    bottom: 25%;
    right: 15%;
    animation-delay: -5s;
}

.shape-5 {
    width: 65px;
    height: 65px;
    bottom: 15%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 20s;
    border-radius: var(--radius-lg);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: heroContentIn 1s ease 0.2s both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-xl);
    animation: heroContentIn 1s ease 0.3s both;
}

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

.hero-title {
    margin-bottom: var(--space-xl);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

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

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-glow);
    border-radius: 6px;
    z-index: -1;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    max-width: 520px;
    animation: heroContentIn 1s ease 0.5s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: heroContentIn 1s ease 0.6s both;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: heroContentIn 1s ease 0.8s both;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    margin-left: -8px;
    border: 3px solid var(--bg);
    box-shadow: 2px 2px 6px var(--shadow-dark);
}

.proof-avatar:first-child {
    margin-left: 0;
}

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

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

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroVisualIn 1.2s ease 0.4s both;
}

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

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--bg);
    border-radius: 40px;
    box-shadow: var(--neu-intense), inset 0 0 0 3px rgba(255, 255, 255, 0.3);
    padding: 12px;
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--bg);
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    border-radius: 0 0 14px 14px;
    margin: 0 auto 8px;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 32px);
    border-radius: 28px;
    background: linear-gradient(145deg, #2d3142, #1a1d2e);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.3);
    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;
}

.gui-top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.gui-resource {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    color: #fff;
}

.gui-resource i {
    font-size: 0.6rem;
}

.gui-resource:nth-child(1) i { color: #a78bfa; }
.gui-resource:nth-child(2) i { color: #fbbf24; }
.gui-resource:nth-child(3) i { color: #fb923c; }

.gui-map {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-hex {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(109, 93, 252, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexPulse 3s ease-in-out infinite;
}

.hex-1 { top: 20%; left: 15%; animation-delay: 0s; }
.hex-2 { top: 15%; left: 50%; animation-delay: 0.5s; background: rgba(255, 107, 157, 0.15); }
.hex-3 { top: 40%; left: 30%; animation-delay: 1s; }
.hex-4 { top: 35%; left: 65%; animation-delay: 1.5s; background: rgba(255, 107, 157, 0.12); }
.hex-5 { top: 60%; left: 20%; animation-delay: 0.3s; }
.hex-6 { top: 55%; left: 55%; animation-delay: 0.8s; background: rgba(109, 93, 252, 0.2); }
.hex-7 { top: 75%; left: 40%; animation-delay: 1.2s; }

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

.map-base {
    position: absolute;
    top: 42%;
    left: 42%;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(109, 93, 252, 0.5);
    animation: basePulse 2s ease-in-out infinite;
}

@keyframes basePulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(109, 93, 252, 0.5); }
    50% { box-shadow: 0 4px 24px rgba(109, 93, 252, 0.8); }
}

.map-unit {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
}

.unit-1 {
    top: 30%;
    left: 25%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    animation: unitMove1 4s ease-in-out infinite;
}

.unit-2 {
    bottom: 30%;
    right: 25%;
    background: linear-gradient(135deg, #34d399, #059669);
    animation: unitMove2 5s ease-in-out infinite;
}

@keyframes unitMove1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 10px); }
}

@keyframes unitMove2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -15px); }
}

.gui-bottom-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.gui-action {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.gui-action-main {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    margin-top: -5px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: var(--radius-full);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: heroContentIn 1s ease 1.2s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
    0% { top: -50%; }
    100% { top: 100%; }
}

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

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

.ticker-section {
    padding: var(--space-lg) 0;
    overflow: hidden;
    background: var(--bg);
}

.ticker-container {
    position: relative;
}

.ticker-container::before,
.ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ticker-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.ticker-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

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

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: var(--space-sm) var(--space-lg);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    border-radius: var(--radius-xl);
}

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

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

.features-section {
    padding: var(--space-4xl) 0;
}

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

.feature-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-raised);
    padding: var(--space-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-intense);
}

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

.feature-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-2xl);
}

.feature-card-large h3 {
    grid-column: 2;
    grid-row: 1;
}

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

.feature-card-large .feature-icon-wrap {
    grid-row: span 2;
}

.feature-card-large .feature-tag {
    grid-row: span 2;
    align-self: center;
}

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

.feature-card-large .feature-icon-wrap {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    box-shadow: var(--neu-pressed);
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.15rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   GAMEPLAY SECTION
   ======================================== */

.gameplay-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.gameplay-steps {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.gameplay-step {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.gameplay-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--bg-dark);
    line-height: 1;
    min-width: 100px;
    text-align: center;
    text-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
}

.step-content {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-raised);
    padding: var(--space-xl);
    flex: 1;
}

.step-visual {
    position: relative;
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.step-icon-large {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
}

.step-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.step-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--accent);
    animation: particleFloat 3s ease-in-out infinite;
}

.step-particles span:nth-child(1) {
    top: -20px;
    left: 30px;
    animation-delay: 0s;
}

.step-particles span:nth-child(2) {
    top: 10px;
    left: -25px;
    animation-delay: 1s;
    background: var(--primary);
}

.step-particles span:nth-child(3) {
    top: 25px;
    left: 40px;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-8px) scale(1.3); }
}

.step-content h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

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

.gameplay-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 50px;
    height: 40px;
    margin-bottom: var(--space-lg);
}

.connector-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}

.connector-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Game Modes */
.modes-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.5rem;
}

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

.mode-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-raised);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
}

.mode-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-intense);
}

.mode-card-featured {
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: var(--neu-intense), 0 4px 20px var(--primary-glow);
}

.mode-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mode-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto var(--space-md);
    transition: all var(--transition-normal);
}

.mode-card:hover .mode-icon {
    box-shadow: var(--neu-pressed);
    color: var(--accent);
}

.mode-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.mode-card p {
    font-size: 0.85rem;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    padding: var(--space-4xl) 0;
}

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

.stat-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-raised);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-intense);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0 auto var(--space-md);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.stat-bar {
    height: 6px;
    background: var(--bg);
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    border-radius: 3px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    width: 0;
    transition: width 2s ease-out;
}

.live-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    border-radius: var(--radius-xl);
    max-width: 400px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: #22c55e;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.live-activity strong {
    color: var(--primary);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: var(--space-4xl) 0;
}

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

.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-raised);
    padding: var(--space-xl);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-intense);
}

.testimonial-featured {
    background: linear-gradient(145deg, var(--bg-light), var(--bg));
    box-shadow: var(--neu-intense);
    transform: scale(1.03);
}

.testimonial-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: #fbbf24;
    font-size: 0.85rem;
}

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

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    box-shadow: 2px 2px 6px var(--shadow-dark);
}

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

.author-info strong {
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.faq-section {
    padding: var(--space-4xl) 0;
}

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

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--neu-raised);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--neu-intense);
}

.faq-item.active {
    box-shadow: var(--neu-intense), 0 4px 20px var(--primary-glow);
}

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

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

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

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

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

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

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

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

.signup-section {
    padding: var(--space-4xl) 0;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.signup-info {
    padding-top: var(--space-lg);
}

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

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

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

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

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

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.signup-urgency {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg);
    box-shadow: var(--neu-raised);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.urgency-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: urgencyPulse 2s ease-in-out infinite;
}

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

.urgency-text {
    display: flex;
    flex-direction: column;
}

.urgency-text strong {
    color: var(--accent);
    font-size: 1rem;
}

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

/* Form */
.signup-form-wrap {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-intense);
    padding: var(--space-2xl);
    position: relative;
}

.signup-form h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.3rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--neu-pressed);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    outline: none;
}

.input-wrap input:focus {
    box-shadow: var(--neu-pressed), 0 0 0 3px var(--primary-glow);
}

.input-wrap input:focus + .input-icon,
.input-wrap input:focus ~ .input-icon {
    color: var(--primary);
}

/* Fix: icon in front */
.input-wrap {
    display: flex;
    align-items: center;
}

.input-wrap .input-icon {
    position: absolute;
    z-index: 2;
}

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

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

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

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

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    background: var(--bg);
    box-shadow: var(--neu-pressed);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
    margin-top: 1px;
}

.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--primary);
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label input:checked + .checkbox-custom {
    box-shadow: var(--neu-pressed), 0 0 0 2px var(--primary-glow);
}

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

.btn-loader {
    margin-left: var(--space-sm);
}

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

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

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

.success-icon i {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-raised);
    animation: successBounce 0.6s ease;
}

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

.form-success h3 {
    margin-bottom: var(--space-md);
    color: #22c55e;
}

.form-success p {
    margin-bottom: var(--space-xl);
}

.success-share p {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
}

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

.btn-share {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.btn-share:hover {
    box-shadow: var(--neu-pressed);
    color: var(--accent);
}

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

.error-icon i {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-raised);
}

.form-error-msg h3 {
    margin-bottom: var(--space-md);
    color: #ef4444;
}

/* ========================================
   RESPONSIBLE GAMING
   ======================================== */

.responsible-section {
    padding: var(--space-3xl) 0;
}

.responsible-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-intense);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.responsible-icon i {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-raised);
}

.responsible-card h3 {
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.responsible-card > p {
    margin-bottom: var(--space-xl);
}

.responsible-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
}

.resp-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.resp-feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

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

.trust-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
}

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

.trust-item {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-raised);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--neu-intense);
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0 auto var(--space-md);
}

.trust-item h4 {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.trust-item p {
    font-size: 0.82rem;
}

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

.main-footer {
    background: var(--bg);
    padding: var(--space-3xl) 0 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bg-dark), transparent);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

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

.footer-description {
    font-size: 0.9rem;
    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: var(--bg);
    box-shadow: var(--neu-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    box-shadow: var(--neu-pressed);
    color: var(--primary);
}

.footer-links-group h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

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

.footer-links-group a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: color var(--transition-fast);
}

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

.footer-links-group a i {
    font-size: 0.75rem;
    width: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--bg-dark);
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer-address {
    font-size: 0.75rem !important;
    margin-top: 4px;
}

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

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 14px;
    background: var(--bg);
    box-shadow: var(--neu-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */

.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    background: var(--bg);
    box-shadow: var(--neu-intense);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 280px;
    max-width: 400px;
    animation: toastIn 0.4s ease forwards;
    font-size: 0.85rem;
}

.toast.toast-out {
    animation: toastOut 0.3s ease forwards;
}

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

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

.toast-icon {
    font-size: 1.2rem;
}

.toast-success .toast-icon { color: #22c55e; }
.toast-error .toast-icon { color: #ef4444; }
.toast-info .toast-icon { color: var(--primary); }

/* ========================================
   SOCIAL PROOF POPUP
   ======================================== */

.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 90;
    animation: proofSlideIn 0.5s ease forwards;
}

.social-proof-popup.hide {
    animation: proofSlideOut 0.4s ease forwards;
}

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

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

.proof-popup-content {
    background: var(--bg);
    box-shadow: var(--neu-intense);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 320px;
}

.proof-popup-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.proof-popup-text {
    display: flex;
    flex-direction: column;
}

.proof-popup-text strong {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.proof-popup-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.proof-popup-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.proof-popup-close {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 4px;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.proof-popup-close:hover {
    color: var(--text-primary);
}

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

.legal-page-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.legal-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bg-dark), transparent);
}

.legal-page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
}

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

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

.legal-content-card {
    background: var(--bg-lighter);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-raised);
    padding: var(--space-2xl) var(--space-3xl);
}

.legal-content-card h2 {
    font-size: 1.4rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--primary);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bg);
}

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

.legal-content-card h3 {
    font-size: 1.1rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content-card p {
    margin-bottom: var(--space-md);
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-primary);
}

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

.legal-content-card li {
    margin-bottom: var(--space-sm);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-primary);
    list-style-type: disc;
}

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

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

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

.legal-content-card .legal-contact {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    margin: var(--space-xl) 0;
}

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

.legal-updated {
    text-align: center;
    padding: var(--space-lg) 0 var(--space-3xl);
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-description {
        margin: 0 auto var(--space-xl);
    }

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

    .hero-social-proof {
        justify-content: center;
    }

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

    .feature-card-large {
        grid-column: span 2;
        grid-template-columns: auto 1fr;
    }

    .feature-card-large .feature-tag {
        grid-column: 2;
        grid-row: auto;
    }

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

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

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

    .testimonial-featured {
        transform: none;
    }

    .testimonial-featured:hover {
        transform: translateY(-4px);
    }

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

    .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: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: var(--space-lg);
        transition: right var(--transition-normal);
        z-index: 99;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 100;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .phone-screen {
        border-radius: 22px;
    }

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

    .feature-card-large {
        grid-column: 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-card-large .feature-icon-wrap {
        grid-row: auto;
        display: flex;
        justify-content: center;
    }

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

    .gameplay-step {
        flex-direction: column;
        align-items: center;
    }

    .step-number {
        font-size: 3rem;
    }

    .gameplay-connector {
        padding-left: 0;
    }

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

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

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

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

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

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

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

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

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

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }

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

    .proof-popup-content {
        max-width: 260px;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS ON SCROLL
   ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .main-header,
    .cookie-banner,
    .age-gate-overlay,
    .social-proof-popup,
    .toast-container,
    .hero-floating-shapes,
    .ticker-section {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        min-height: auto;
        padding: 20px 0;
    }
}
