/* ============================
   CSS VARIABLES & RESET
   ============================ */
:root {
    --primary: #a8d8ea;
    --primary-dark: #7bc0d8;
    --primary-light: #d0ecf5;
    --secondary: #aa96da;
    --secondary-dark: #8b74c8;
    --secondary-light: #cfc3ea;
    --accent: #fcbad3;
    --accent-dark: #f58fb5;
    --accent-light: #fddce8;

    --bg-main: #faf5ff;
    --bg-card: #ffffff;
    --bg-section-alt: #f0e6ff;
    --bg-glass: rgba(255, 255, 255, 0.65);

    --text-primary: #2d2640;
    --text-secondary: #5c5470;
    --text-muted: #8e8a9a;
    --text-light: #b5b0c0;
    --text-on-dark: #ffffff;

    --shadow-sm: 0 2px 8px rgba(170, 150, 218, 0.1);
    --shadow-md: 0 4px 20px rgba(170, 150, 218, 0.15);
    --shadow-lg: 0 8px 40px rgba(170, 150, 218, 0.2);
    --shadow-xl: 0 16px 60px rgba(170, 150, 218, 0.25);
    --shadow-colored: 0 8px 32px rgba(168, 216, 234, 0.3);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    --font-display: 'Nunito', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-max: 1200px;
    --header-height: 76px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

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

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

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

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

ul {
    list-style: none;
}

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

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

/* ============================
   UTILITY CLASSES
   ============================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

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

.btn-md {
    padding: 12px 28px;
    font-size: 15px;
}

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

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--text-on-dark);
    box-shadow: 0 4px 16px rgba(170, 150, 218, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(170, 150, 218, 0.5);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-on-dark);
    box-shadow: 0 4px 16px rgba(252, 186, 211, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(252, 186, 211, 0.5);
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 2px solid rgba(170, 150, 218, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: var(--text-on-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--secondary);
    background: rgba(170, 150, 218, 0.08);
}

/* ============================
   FLOATING DECORATIONS
   ============================ */
.floating-decor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 30%;
    right: -3%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 60%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    bottom: 10%;
    right: 15%;
    animation-delay: -15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    top: 5%;
    right: 30%;
    animation-delay: -7s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    background: var(--secondary);
    bottom: 20%;
    left: 30%;
    animation-delay: -12s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

/* ============================
   HEADER
   ============================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-normal);
    background: rgba(250, 245, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(170, 150, 218, 0.08);
}

.site-header.scrolled {
    background: rgba(250, 245, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-dark);
    background: rgba(170, 150, 218, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    text-decoration: none;
}

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

.mobile-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 245, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.mobile-nav.open {
    min-height: 100vh;
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.mobile-nav-link {
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: rgba(170, 150, 218, 0.1);
    color: var(--secondary-dark);
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    opacity: 0.25;
    top: -10%;
    right: -5%;
    animation: blobFloat 15s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    opacity: 0.2;
    bottom: -10%;
    left: -10%;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    opacity: 0.15;
    top: 40%;
    left: 30%;
    animation: blobFloat 20s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

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

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s ease-out 0.3s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(252, 186, 211, 0.2), rgba(170, 150, 218, 0.2));
    border: 1px solid rgba(170, 150, 218, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 20px 28px;
    background: var(--bg-glass);
    border: 1px solid rgba(170, 150, 218, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(170, 150, 218, 0.2);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s ease-out 0.6s forwards;
}

.hero-phone-frame {
    position: relative;
    width: 280px;
    height: 380px;
    background: linear-gradient(145deg, #ffffff, #f5f0ff);
    border-radius: 40px;
    box-shadow:
        0 20px 60px rgba(170, 150, 218, 0.25),
        0 0 0 1px rgba(170, 150, 218, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(170, 150, 218, 0.15);
    border-radius: var(--radius-full);
    z-index: 2;
}

.hero-game-icon {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.phone-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(170, 150, 218, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 3;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: -2s;
}

.card-3 {
    top: 50%;
    right: -20%;
    animation-delay: -4s;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

/* ============================
   SOCIAL PROOF TICKER
   ============================ */
.social-proof-ticker {
    padding: 16px 0;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.1), rgba(170, 150, 218, 0.1), rgba(252, 186, 211, 0.1));
    border-top: 1px solid rgba(170, 150, 218, 0.08);
    border-bottom: 1px solid rgba(170, 150, 218, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

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

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

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

.section-tag {
    display: inline-block;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    background: rgba(170, 150, 218, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(170, 150, 218, 0.2);
}

.about-card-main {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-card-main .about-card-visual {
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.about-card-main .about-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-card-main:hover .about-card-visual img {
    transform: scale(1.05);
}

.about-card-main .about-card-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-main h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-card-main p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-card-sm {
    grid-column: span 1;
    padding: 32px 24px;
    text-align: center;
}

.about-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.15), rgba(170, 150, 218, 0.15));
    border-radius: var(--radius-md);
}

.about-card-sm h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* ============================
   FEATURES SECTION
   ============================ */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-section-alt) 50%, var(--bg-main) 100%);
    position: relative;
    z-index: 1;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-visual img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-visual:hover img {
    transform: scale(1.04);
}

.feature-visual-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: var(--accent);
    color: var(--text-on-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(170, 150, 218, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.feature-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================
   SCREENSHOTS GALLERY
   ============================ */
.screenshots-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.gallery-wrapper {
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.gallery-slide {
    flex: 0 0 100%;
    transition: transform var(--transition-slow);
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

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

.gallery-card:hover img {
    transform: scale(1.03);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    background: linear-gradient(to top, rgba(45, 38, 64, 0.7), transparent);
    color: var(--text-on-dark);
}

.gallery-card-overlay span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

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

.gallery-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(170, 150, 218, 0.15);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.gallery-btn:hover {
    background: var(--secondary);
    color: var(--text-on-dark);
    border-color: var(--secondary);
    transform: scale(1.05);
}

.gallery-dots {
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.gallery-dot.active {
    background: var(--secondary);
    width: 28px;
    border-radius: var(--radius-full);
}

/* ============================
   LIVE STATS
   ============================ */
.live-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.08), rgba(170, 150, 218, 0.08), rgba(252, 186, 211, 0.08));
    position: relative;
    z-index: 1;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.live-stat-card {
    position: relative;
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    overflow: hidden;
}

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

.live-stat-icon {
    margin-bottom: 16px;
}

.live-stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.live-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

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

.live-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #4ecdc4;
    animation: livePulseRing 2s ease-in-out infinite;
}

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

@keyframes livePulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(252, 186, 211, 0.3);
}

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

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

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-section-alt) 100%);
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(170, 150, 218, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(170, 150, 218, 0.25);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(170, 150, 218, 0.3);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--secondary);
    transition: transform var(--transition-normal);
}

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

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

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

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

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

/* ============================
   CONTACT / LEAD FORM
   ============================ */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    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;
}

.contact-detail-item svg {
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
}

.contact-detail-item a {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-detail-item a:hover {
    color: var(--secondary);
}

.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Form */
.contact-form-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(170, 150, 218, 0.12);
    box-shadow: var(--shadow-lg);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.form-group label .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 12px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap svg {
    position: absolute;
    left: 16px;
    pointer-events: none;
    z-index: 1;
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid rgba(170, 150, 218, 0.15);
    border-radius: var(--radius-md);
    background: rgba(250, 245, 255, 0.5);
    color: var(--text-primary);
    font-size: 15px;
    transition: all var(--transition-fast);
    outline: none;
}

.input-wrap input:focus {
    border-color: var(--secondary);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(170, 150, 218, 0.1);
}

.input-wrap input::placeholder {
    color: var(--text-light);
}

.input-wrap input.error {
    border-color: #e74c3c;
}

.form-error {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 16px;
}

/* Checkbox */
.form-consent {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(170, 150, 218, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    background: var(--bg-card);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--secondary);
    border-color: var(--secondary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

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

/* Form submit button loader */
.btn-loader {
    animation: spin 1s linear infinite;
}

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

/* Success & Error Messages */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-secondary);
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: #c0392b;
    margin-top: 16px;
}

/* ============================
   TRUST SECTION
   ============================ */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-section-alt) 0%, var(--bg-main) 100%);
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-normal);
}

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

.trust-card-icon {
    margin-bottom: 20px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: linear-gradient(135deg, #2d2640, #3a3050);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
    color: var(--text-on-dark);
}

.footer-tagline {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-on-dark);
    margin-bottom: 16px;
}

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

.footer-links-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.footer-address svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.footer-age {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--text-on-dark);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* ============================
   SOCIAL PROOF NOTIFICATION
   ============================ */
.social-proof-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(170, 150, 218, 0.15);
    z-index: 800;
    max-width: 320px;
    animation: slideInNotif 0.4s ease-out;
}

@keyframes slideInNotif {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.spn-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(170, 150, 218, 0.1);
    border-radius: 50%;
}

.spn-content {
    flex-grow: 1;
}

.spn-content strong {
    display: block;
    font-size: 13px;
    color: var(--text-primary);
}

.spn-content span {
    font-size: 12px;
    color: var(--text-muted);
}

.spn-close {
    flex-shrink: 0;
    padding: 4px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-card);
    border-top: 1px solid rgba(170, 150, 218, 0.15);
    box-shadow: 0 -4px 30px rgba(45, 38, 64, 0.1);
    animation: cookieSlideUp 0.5s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

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

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

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

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

.cookie-settings {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    border-top: 1px solid rgba(170, 150, 218, 0.1);
    padding-top: 16px;
}

.cookie-setting-row {
    font-size: 14px;
    color: var(--text-secondary);
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

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

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

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

/* ============================
   LEGAL PAGES
   ============================ */
.legal-content {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.legal-content .container {
    max-width: 820px;
}

.legal-hero {
    text-align: center;
    margin-bottom: 48px;
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.1), rgba(170, 150, 218, 0.1), rgba(252, 186, 211, 0.1));
    border-radius: var(--radius-xl);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.legal-hero p {
    font-size: 15px;
    color: var(--text-muted);
}

.legal-body {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(170, 150, 218, 0.1);
    box-shadow: var(--shadow-sm);
}

.legal-body h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(170, 150, 218, 0.1);
}

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

.legal-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-body li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
    list-style: disc;
}

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

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

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

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-floating-card.card-1 { right: 5%; }
    .hero-floating-card.card-2 { left: 5%; }
    .hero-floating-card.card-3 { right: 0%; }

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

    .about-card-main .about-card-visual {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 300px;
    }

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

    .about-card-main {
        grid-column: span 2;
    }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-row-reverse {
        direction: ltr;
    }

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

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

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

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

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

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

    .mobile-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 40px;
    }

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

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

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

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

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

    .about-card-main {
        grid-column: span 1;
    }

    .about-card-sm {
        grid-column: span 1;
    }

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

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

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

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

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

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

    .legal-hero {
        padding: 32px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-section,
    .features-section,
    .screenshots-section,
    .faq-section,
    .contact-section,
    .trust-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .features-showcase {
        gap: 48px;
    }

    .social-proof-notification {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .hero-cta-group .btn {
        width: 100%;
    }

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

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

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

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

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

/* ============================
   PRINT STYLES
   ============================ */
@media print {
    .site-header,
    .cookie-banner,
    .back-to-top,
    .social-proof-notification,
    .floating-decor {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
