/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #fca5a5;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    --secondary-light: #fde68a;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-light: #93c5fd;

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

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --text-dark: #1e293b;

    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
    --shadow-glow-primary: 0 0 40px rgba(239,68,68,0.3);
    --shadow-glow-secondary: 0 0 40px rgba(251,191,36,0.3);
    --shadow-glow-accent: 0 0 40px rgba(59,130,246,0.3);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

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

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

/* ============================================
   GEOMETRIC PATTERN BACKGROUND (GLOBAL)
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(30deg, rgba(239,68,68,0.03) 12%, transparent 12.5%, transparent 87%, rgba(239,68,68,0.03) 87.5%, rgba(239,68,68,0.03)),
        linear-gradient(150deg, rgba(239,68,68,0.03) 12%, transparent 12.5%, transparent 87%, rgba(239,68,68,0.03) 87.5%, rgba(239,68,68,0.03)),
        linear-gradient(30deg, rgba(239,68,68,0.03) 12%, transparent 12.5%, transparent 87%, rgba(239,68,68,0.03) 87.5%, rgba(239,68,68,0.03)),
        linear-gradient(150deg, rgba(239,68,68,0.03) 12%, transparent 12.5%, transparent 87%, rgba(239,68,68,0.03) 87.5%, rgba(239,68,68,0.03)),
        linear-gradient(60deg, rgba(251,191,36,0.04) 25%, transparent 25.5%, transparent 75%, rgba(251,191,36,0.04) 75%, rgba(251,191,36,0.04)),
        linear-gradient(60deg, rgba(251,191,36,0.04) 25%, transparent 25.5%, transparent 75%, rgba(251,191,36,0.04) 75%, rgba(251,191,36,0.04));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-card);
    border-top: 3px solid var(--primary);
    padding: 0;
    transform: translateY(0);
    transition: transform var(--transition-slow);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
}

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

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

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

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

.cookie-circle {
    bottom: -30px;
    left: 60px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary);
    color: #fff;
}
.cookie-btn-accept:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-glow-primary);
}

.cookie-btn-reject {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-reject:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.cookie-btn-settings:hover {
    background: rgba(59,130,246,0.1);
}

.cookie-settings-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-setting-item {
    margin-bottom: 10px;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

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

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.age-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
    overflow: hidden;
    animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.age-modal-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.age-shape {
    position: absolute;
    opacity: 0.06;
}

.age-hex {
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.age-tri {
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--accent);
}

.age-circ {
    top: 40%;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--primary);
}

.age-modal-icon {
    margin-bottom: 20px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.age-modal-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 8px;
}

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

.age-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

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

.age-btn-yes {
    background: var(--primary);
    color: #fff;
}
.age-btn-yes:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-glow-primary);
    transform: translateY(-2px);
}

.age-btn-no {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.15);
}
.age-btn-no:hover {
    background: var(--bg-card-hover);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-med);
    background: rgba(15,15,20,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header.scrolled {
    background: rgba(15,15,20,0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom-color: rgba(239,68,68,0.2);
}

.header-geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.header-shape {
    position: absolute;
    opacity: 0.04;
}

.h-shape-1 {
    top: -30px;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--primary);
    animation: floatSlow 8s ease-in-out infinite;
}

.h-shape-2 {
    top: 10px;
    right: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.h-shape-3 {
    top: -10px;
    right: 40%;
    width: 50px;
    height: 50px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 15s linear infinite;
}

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

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    position: relative;
    z-index: 2;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

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

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

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

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

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

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
}

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

.nav-cta:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-glow-primary);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
    z-index: 1001;
}

.toggle-bar {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-geo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0;
    animation: geoFadeIn 1s forwards;
}

.geo-tri-1 {
    top: 15%;
    left: -5%;
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 208px solid rgba(239,68,68,0.06);
    animation-delay: 0.2s;
    animation-name: geoFadeIn, floatSlow;
    animation-duration: 1s, 12s;
    animation-timing-function: ease-out, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

.geo-tri-2 {
    bottom: 10%;
    right: -3%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 139px solid rgba(251,191,36,0.05);
    animation-delay: 0.4s;
    transform: rotate(180deg);
}

.geo-hex-1 {
    top: 25%;
    right: 8%;
    width: 160px;
    height: 160px;
    background: rgba(59,130,246,0.04);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 0.3s;
    animation-name: geoFadeIn, rotateSlow;
    animation-duration: 1s, 30s;
    animation-timing-function: ease-out, linear;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

.geo-hex-2 {
    bottom: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: rgba(239,68,68,0.04);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 0.5s;
}

.geo-circ-1 {
    top: 10%;
    right: 30%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(251,191,36,0.08);
    animation-delay: 0.6s;
    animation-name: geoFadeIn, floatSlow;
    animation-duration: 1s, 8s;
    animation-timing-function: ease-out, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

.geo-circ-2 {
    bottom: 30%;
    right: 15%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59,130,246,0.05);
    animation-delay: 0.7s;
}

.geo-rect-1 {
    top: 40%;
    left: 2%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(239,68,68,0.06);
    transform: rotate(45deg);
    animation-delay: 0.8s;
    animation-name: geoFadeIn, rotateSlow;
    animation-duration: 1s, 20s;
    animation-timing-function: ease-out, linear;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

.geo-diamond-1 {
    bottom: 15%;
    left: 35%;
    width: 40px;
    height: 40px;
    background: rgba(251,191,36,0.06);
    transform: rotate(45deg);
    animation-delay: 0.9s;
}

.geo-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(239,68,68,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(59,130,246,0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(251,191,36,0.05) 0%, transparent 40%);
    opacity: 1;
}

@keyframes geoFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 24px;
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,191,36,0.15);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 24px;
    border: 1px solid rgba(251,191,36,0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(251,191,36,0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
    color: var(--text-primary);
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.06);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(239,68,68,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-glow-primary);
    transform: translateY(-2px);
    color: #fff;
}

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

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(251,191,36,0.05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

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

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

.hero-phone-frame {
    position: relative;
    width: 280px;
    height: 380px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 3px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(239,68,68,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    z-index: 5;
}

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

.phone-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.p-shape {
    position: absolute;
    opacity: 0.08;
}

.p-shape-1 {
    top: 10%;
    left: 10%;
    width: 40px;
    height: 40px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    animation: rotateSlow 10s linear infinite;
}

.p-shape-2 {
    bottom: 15%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--accent);
    animation: floatSlow 6s ease-in-out infinite;
}

.p-shape-3 {
    top: 60%;
    left: 5%;
    width: 30px;
    height: 30px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 12s linear infinite reverse;
}

/* Floating Badges */
.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 10;
}

.badge-1 {
    top: 15%;
    right: -20px;
    animation: badgeFloat1 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 20%;
    left: -30px;
    animation: badgeFloat2 6s ease-in-out infinite;
}

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

@keyframes badgeFloat2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(10px) rotate(3deg); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof {
    background: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ticker-wrap {
    overflow: hidden;
    padding: 14px 0;
}

.ticker {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}

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

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: rgba(239,68,68,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(239,68,68,0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.about-shape {
    position: absolute;
    opacity: 0.04;
}

.a-shape-1 {
    top: 5%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 25s linear infinite;
}

.a-shape-2 {
    bottom: 10%;
    left: -3%;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--secondary);
    animation: floatSlow 10s ease-in-out infinite;
}

.a-shape-3 {
    top: 50%;
    right: 10%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    animation: floatSlow 7s ease-in-out infinite reverse;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-med);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239,68,68,0.3);
    box-shadow: var(--shadow-md);
}

.about-card-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary);
    opacity: 0.04;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: opacity var(--transition-med);
}

.about-card:hover .about-card-shape {
    opacity: 0.1;
}

.card-shape-2 { background: var(--secondary); }
.card-shape-3 { background: var(--accent); }
.card-shape-4 {
    background: var(--primary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.about-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239,68,68,0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.about-card:nth-child(2) .about-card-icon { background: rgba(251,191,36,0.08); }
.about-card:nth-child(3) .about-card-icon { background: rgba(59,130,246,0.08); }
.about-card:nth-child(4) .about-card-icon { background: rgba(239,68,68,0.08); }

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots {
    position: relative;
    padding: 100px 0;
    background: var(--bg-surface);
    overflow: hidden;
}

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

.ss-shape {
    position: absolute;
    opacity: 0.04;
}

.ss-shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 20s linear infinite;
}

.ss-shape-2 {
    bottom: 5%;
    right: 8%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 139px solid var(--primary);
}

/* Carousel */
.screenshots-carousel {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-med);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.screenshot-frame {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 3px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    transition: all var(--transition-med);
}

.screenshot-frame:hover {
    border-color: rgba(239,68,68,0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
    transform: scale(1.02);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-primary);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(239,68,68,0.4);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255,255,255,0.3);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.f-shape {
    position: absolute;
    opacity: 0.04;
}

.f-shape-1 {
    top: 5%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--accent);
    animation: floatSlow 9s ease-in-out infinite;
}

.f-shape-2 {
    top: 30%;
    right: 3%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    animation: floatSlow 11s ease-in-out infinite reverse;
}

.f-shape-3 {
    bottom: 15%;
    left: 2%;
    width: 80px;
    height: 80px;
    background: var(--secondary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 18s linear infinite;
}

.f-shape-4 {
    bottom: 5%;
    right: 15%;
    width: 50px;
    height: 50px;
    background: var(--accent);
    transform: rotate(45deg);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.3);
    box-shadow: var(--shadow-md);
}

.feature-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), rgba(239,68,68,0.05));
    border-color: rgba(239,68,68,0.15);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.feature-icon-wrap {
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* ============================================
   LIVE COUNTERS
   ============================================ */
.live-counters {
    position: relative;
    padding: 80px 0;
    background: var(--bg-surface);
    overflow: hidden;
}

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

.c-shape {
    position: absolute;
    opacity: 0.04;
}

.c-shape-1 {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.c-shape-2 {
    bottom: 10%;
    right: 8%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

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

.counter-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: var(--shadow-sm);
}

.counter-icon {
    margin-bottom: 16px;
}

.counter-value {
    margin-bottom: 8px;
}

.counter-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
}

.counter-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-mono);
}

.counter-pulse {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-med);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    position: relative;
    padding: 100px 0;
    background: var(--bg-surface);
    overflow: hidden;
}

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

.faq-shape {
    position: absolute;
    opacity: 0.04;
}

.faq-shape-1 {
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 22s linear infinite;
}

.faq-shape-2 {
    bottom: 15%;
    left: 3%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   CONTACT / SIGNUP SECTION
   ============================================ */
.contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.ct-shape {
    position: absolute;
    opacity: 0.04;
}

.ct-shape-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 20s linear infinite;
}

.ct-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 139px solid var(--secondary);
}

.ct-shape-3 {
    top: 50%;
    right: 20%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    animation: floatSlow 8s ease-in-out infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition-fast);
}

.contact-detail-item:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateX(4px);
}

.contact-detail-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(59,130,246,0.08);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--accent-light);
    border: 1px solid rgba(59,130,246,0.15);
}

/* Signup Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

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

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

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

.form-group input.success {
    border-color: #22c55e;
}

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

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

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

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

/* Submit Button */
#submitBtn {
    margin-top: 8px;
    font-size: 1rem;
    padding: 16px;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

/* Form Message */
.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
}

.form-message.error {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.responsible-gaming {
    padding: 24px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.responsible-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(251,191,36,0.06);
    border: 1px solid rgba(251,191,36,0.12);
    border-radius: var(--radius-md);
}

.responsible-icon {
    flex-shrink: 0;
    color: var(--secondary);
    margin-top: 2px;
}

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

.responsible-text strong {
    color: var(--secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    padding: 60px 0 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

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

.footer-shape {
    position: absolute;
    opacity: 0.03;
}

.ft-shape-1 {
    top: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.ft-shape-2 {
    bottom: 30%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--secondary);
}

.ft-shape-3 {
    top: 50%;
    right: 30%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

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

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

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

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-surface);
    overflow: hidden;
    text-align: center;
}

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

.lh-shape {
    position: absolute;
    opacity: 0.05;
}

.lh-shape-1 {
    top: 20%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateSlow 20s linear infinite;
}

.lh-shape-2 {
    bottom: 10%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--secondary);
}

.lh-shape-3 {
    top: 40%;
    right: 8%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.legal-content {
    padding: 60px 0 100px;
    position: relative;
    z-index: 2;
}

.legal-container {
    max-width: 800px;
}

.legal-body {
    background: #fff;
    color: var(--text-dark);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    line-height: 1.8;
}

.legal-body h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

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

.legal-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #1e293b;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-body p {
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #334155;
}

.legal-body ul, .legal-body ol {
    margin-bottom: 14px;
    padding-left: 24px;
    list-style: disc;
}

.legal-body li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #334155;
}

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

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

.legal-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    font-size: 0.85rem;
    color: #64748b;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="slide-right"] {
    transform: translateX(-40px);
}

[data-animate="slide-left"] {
    transform: translateX(40px);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

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

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

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

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

    .feature-large {
        grid-row: span 1;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-card);
        padding: 100px 32px 32px;
        transition: right var(--transition-med);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        display: block;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .nav-link:hover, .nav-link.active {
        background: rgba(239,68,68,0.08);
    }

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

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero-inner {
        padding: 40px 16px;
    }

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

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

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

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

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

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

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

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

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

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

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

    .contact-form-wrap {
        padding: 28px 20px;
    }

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

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .age-modal-actions {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
    }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-med);
}

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

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: #fff;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
