/* ===== CSS Variables ===== */
:root {
    --bg-dark: #0c0118;
    --bg-card: #150a28;
    --bg-card-hover: #1d1035;
    --purple-deep: #1a0a2e;
    --purple-mid: #2d1b4e;
    --purple-light: #4a2c7a;

    --accent-cyan: #00e5ff;
    --accent-teal: #00d4aa;
    --accent-magenta: #e040fb;
    --accent-pink: #ff4081;

    --text-white: #ffffff;
    --text-light: #e0d6f2;
    --text-muted: #9b8ab8;
    --text-dim: #6b5b8a;

    --gradient-main: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-magenta) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(224, 64, 251, 0.1) 100%);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Utilities ===== */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 900px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(21, 10, 40, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
}

.nav-center {
    display: flex;
    gap: 32px;
}

.nav-center a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-center a:hover {
    color: var(--text-white);
}

.nav-download {
    padding: 10px 20px;
    background: var(--gradient-main);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bg-dark);
}

.nav-download:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.menu-toggle {
    display: none;
    padding: 8px;
    color: var(--text-white);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Brand Text - Hidden on desktop */
.mobile-brand {
    display: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta), var(--accent-cyan));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandGradient 4s ease-in-out infinite;
}

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(224, 64, 251, 0.1) 0%, transparent 50%),
        var(--bg-dark);
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #ffd700;
    font-size: 0.875rem;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-line.highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.feature-tag svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
}

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

.btn-app-store,
.btn-play-store {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.btn-app-store {
    background: var(--text-white);
    color: var(--bg-dark);
}

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

.btn-app-store:hover,
.btn-play-store:hover {
    transform: translateY(-3px);
}

.btn-app-store:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-play-store:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.1);
}

.btn-app-store svg,
.btn-play-store svg {
    width: 24px;
    height: 24px;
}

.btn-app-store div,
.btn-play-store div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-app-store span,
.btn-play-store span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.btn-app-store strong,
.btn-play-store strong {
    font-size: 1rem;
}

/* Disabled State for Coming Soon */
.btn-play-store.disabled,
.btn-download.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-play-store.disabled:hover,
.btn-download.disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: transparent;
}

.coming-soon-link {
    color: var(--text-dim);
    font-size: 0.875rem;
    cursor: default;
}

/* Phone Showcase */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-showcase {
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.phone-device {
    position: relative;
    width: 280px;
    background: linear-gradient(145deg, #2a2040 0%, #1a1030 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 9/19.5;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
}

.screen-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen-img.active {
    opacity: 1;
}

.phone-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.phone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.phone-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-cyan);
}

.phone-dot:hover {
    background: rgba(0, 229, 255, 0.5);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ===== About Section - Bento Grid ===== */
.about {
    padding: 120px 0;
    background: var(--bg-dark);
}

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

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

.bento-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
}

.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
}

.bento-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-subtle);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.bento-main h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bento-main p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.bento-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.bento-visual {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
    overflow: hidden;
}

.word-reveal {
    display: flex;
    gap: 20px;
    perspective: 1000px;
}

.word-card {
    padding: 24px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transform: rotateY(-5deg);
    transition: var(--transition);
}

.word-card.player {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid var(--accent-teal);
}

.word-card.imposter {
    background: rgba(255, 64, 129, 0.15);
    border: 1px solid var(--accent-pink);
    transform: rotateY(5deg);
}

.bento-visual:hover .word-card {
    transform: rotateY(0);
}

.word-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.word-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.word-card.player .word-text {
    color: var(--accent-teal);
}

.word-card.imposter .word-text {
    color: var(--accent-pink);
}

.bento-quote {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-cyan);
    opacity: 0.3;
    margin-bottom: 16px;
}

.bento-quote p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
    font-style: italic;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 100%, rgba(224, 64, 251, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.section-intro {
    margin-bottom: 60px;
}

.section-intro.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-subtle);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.section-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.steps-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

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

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-cyan);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    opacity: 0.3;
    margin-top: 80px;
    flex-shrink: 0;
}

/* ===== Screenshots Gallery ===== */
.screenshots {
    padding: 120px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.gallery-wrapper {
    margin-top: 40px;
    overflow-x: visible;
    overflow-y: hidden;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px 24px 40px;
    width: 100%;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    width: 260px;
    flex-shrink: 0;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gallery-caption {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Game Modes ===== */
.modes {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

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

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

.mode-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
}

.mode-card.featured {
    background: linear-gradient(145deg, rgba(0, 229, 255, 0.08) 0%, var(--bg-card) 100%);
    border-color: rgba(0, 229, 255, 0.3);
}

.mode-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-main);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-dark);
    white-space: nowrap;
}

.mode-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mode-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mode-badge.easy {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-teal);
}

.mode-badge.medium {
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent-cyan);
}

.mode-badge.hard {
    background: rgba(255, 64, 129, 0.15);
    color: var(--accent-pink);
}

.mode-card h3 {
    font-size: 1.5rem;
}

.mode-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.mode-visual {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
}

.mode-example {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example-player,
.example-imposter {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.green {
    background: var(--accent-teal);
}

.dot.yellow {
    background: #ffd700;
}

.dot.red {
    background: var(--accent-pink);
}

.example-player span,
.example-imposter span {
    color: var(--text-muted);
}

.example-player strong {
    color: var(--accent-teal);
    margin-left: auto;
}

.example-imposter strong {
    color: var(--accent-pink);
    margin-left: auto;
}

/* ===== Reviews Masonry ===== */
.reviews {
    padding: 120px 0;
    background: var(--bg-dark);
}

.rating-showcase {
    margin-top: 24px;
}

.big-stars {
    font-size: 2rem;
    color: #ffd700;
    letter-spacing: 4px;
}

.rating-showcase > span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.reviews-masonry {
    columns: 3;
    column-gap: 24px;
    margin-top: 60px;
}

.review-card {
    break-inside: avoid;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
}

.review-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-author {
    font-weight: 600;
    font-size: 0.875rem;
}

.review-stars {
    color: #ffd700;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

/* ===== Download CTA ===== */
.download-cta {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--purple-deep) 100%);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    opacity: 0.1;
    top: -200px;
    left: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-magenta);
    opacity: 0.1;
    bottom: -150px;
    right: -150px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    margin: 0 auto 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.btn-download.ios {
    background: var(--text-white);
    color: var(--bg-dark);
}

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

.btn-download:hover {
    transform: translateY(-4px);
}

.btn-download.ios:hover {
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

.btn-download.android:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.1);
}

.btn-download svg {
    width: 28px;
    height: 28px;
}

.btn-download div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-download span {
    font-size: 0.75rem;
    opacity: 0.7;
}

.btn-download strong {
    font-size: 1.125rem;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-brand > p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

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

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 6px 0;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
}

.social-icons a:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

/* ===== Responsive ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

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

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

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

    .hero-right {
        order: -1;
    }

    .hero-scroll {
        display: none;
    }

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

    .bento-main {
        grid-column: span 2;
    }

    .bento-visual {
        grid-column: span 2;
    }

    .bento-quote {
        grid-column: span 2;
    }

    .steps-track {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }

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

    .reviews-masonry {
        columns: 2;
    }

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

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

    .footer-brand .logo {
        justify-content: center;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-center,
    .nav-download {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-brand {
        display: block;
        flex: 1;
        text-align: center;
    }

    .navbar {
        width: calc(100% - 32px);
        top: 12px;
    }

    .nav-container {
        padding: 10px 16px;
    }

    .logo span {
        font-size: 1rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

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

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-features {
        gap: 8px;
        margin-bottom: 32px;
    }

    .feature-tag {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .feature-tag svg {
        width: 16px;
        height: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-app-store,
    .btn-play-store {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }

    .phone-device {
        width: 220px;
        border-radius: 36px;
        padding: 10px;
    }

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

    .phone-glow {
        width: 280px;
        height: 280px;
    }

    .phone-dots {
        margin-top: 16px;
        gap: 6px;
    }

    .phone-dot {
        width: 6px;
        height: 6px;
    }

    .phone-dot.active {
        width: 20px;
    }

    /* About Section */
    .about {
        padding: 80px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-main {
        grid-column: span 1;
        grid-row: span 1;
        padding: 28px;
    }

    .bento-main h2 {
        font-size: 1.75rem;
    }

    .bento-main p {
        font-size: 1rem;
    }

    .bento-stat {
        padding: 24px;
    }

    .stat-big {
        font-size: 2.5rem;
    }

    .bento-visual {
        grid-column: span 1;
        padding: 32px 20px;
        overflow: visible;
        min-height: 200px;
    }

    .word-reveal {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .word-card {
        transform: none !important;
        padding: 16px 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .word-text {
        font-size: 1.25rem;
    }

    .bento-quote {
        grid-column: span 1;
    }

    .bento-quote p {
        font-size: 1.125rem;
    }

    /* How It Works */
    .how-it-works {
        padding: 80px 0;
    }

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

    .section-intro h2 {
        font-size: 1.75rem;
    }

    .step-card {
        padding: 24px;
    }

    .step-num {
        font-size: 2rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .step-card h3 {
        font-size: 1.125rem;
    }

    .step-card p {
        font-size: 0.875rem;
    }

    .step-connector {
        height: 20px;
    }

    /* Screenshots */
    .screenshots {
        padding: 80px 0;
    }

    .gallery-track {
        gap: 16px;
        padding: 16px 16px 50px;
    }

    .gallery-item {
        width: 180px;
    }

    .gallery-item img {
        border-radius: var(--radius-md);
    }

    .gallery-caption {
        font-size: 0.75rem;
        bottom: -24px;
    }

    /* Game Modes */
    .modes {
        padding: 80px 0;
    }

    .mode-card {
        padding: 24px;
    }

    .mode-card h3 {
        font-size: 1.25rem;
    }

    .mode-desc {
        font-size: 0.875rem;
    }

    .mode-visual {
        padding: 16px;
    }

    .example-player,
    .example-imposter {
        font-size: 0.8rem;
    }

    /* Reviews */
    .reviews {
        padding: 80px 0;
    }

    .reviews-masonry {
        columns: 1;
        margin-top: 40px;
    }

    .review-card {
        padding: 20px;
        margin-bottom: 16px;
    }

    .review-content p {
        font-size: 0.9375rem;
    }

    .big-stars {
        font-size: 1.5rem;
    }

    .rating-showcase > span {
        font-size: 0.875rem;
    }

    /* Download CTA */
    .download-cta {
        padding: 80px 0;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content > p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-download {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        gap: 32px;
        margin-bottom: 32px;
    }

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

    .footer-col h4 {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 0.8125rem;
        padding: 4px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .social-icons svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        width: calc(100% - 24px);
        top: 8px;
    }

    .nav-container {
        padding: 8px 12px;
    }

    .logo img {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .logo span {
        font-size: 0.9rem;
    }

    .menu-toggle {
        padding: 4px;
    }

    .menu-toggle svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        padding: 90px 16px 50px;
    }

    .hero h1 {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }

    .rating-pill {
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .rating-stars {
        font-size: 0.75rem;
    }

    .rating-text {
        font-size: 0.75rem;
    }

    .hero-desc {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .hero-features {
        gap: 6px;
    }

    .feature-tag {
        padding: 6px 10px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .feature-tag svg {
        width: 14px;
        height: 14px;
    }

    .btn-app-store,
    .btn-play-store {
        max-width: 100%;
        padding: 12px 16px;
        gap: 10px;
    }

    .btn-app-store svg,
    .btn-play-store svg {
        width: 20px;
        height: 20px;
    }

    .btn-app-store strong,
    .btn-play-store strong {
        font-size: 0.9rem;
    }

    .phone-device {
        width: 200px;
        border-radius: 32px;
        padding: 8px;
    }

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

    .phone-glow {
        width: 220px;
        height: 220px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .bento-card {
        padding: 20px;
    }

    .bento-main {
        padding: 24px;
    }

    .bento-label {
        padding: 5px 12px;
        font-size: 0.65rem;
        margin-bottom: 16px;
    }

    .bento-main h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .bento-main p {
        font-size: 0.9375rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .bento-visual {
        padding: 24px 16px;
        overflow: visible;
    }

    .word-card {
        padding: 12px 20px;
        width: 100%;
    }

    .word-label {
        font-size: 0.65rem;
    }

    .word-text {
        font-size: 1rem;
    }

    .bento-quote p {
        font-size: 1rem;
    }

    .quote-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }

    /* How It Works */
    .how-it-works {
        padding: 60px 0;
    }

    .section-label {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .section-intro h2 {
        font-size: 1.5rem;
    }

    .section-intro {
        margin-bottom: 32px;
    }

    .step-card {
        padding: 20px;
    }

    .step-num {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .step-icon svg {
        width: 22px;
        height: 22px;
    }

    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 0.8125rem;
    }

    /* Screenshots */
    .screenshots {
        padding: 60px 0;
    }

    .gallery-track {
        gap: 12px;
        padding: 12px 16px 40px;
    }

    .gallery-item {
        width: 150px;
    }

    .gallery-caption {
        font-size: 0.7rem;
        bottom: -20px;
    }

    /* Game Modes */
    .modes {
        padding: 60px 0;
    }

    .modes-stack {
        max-width: 100%;
    }

    .mode-card {
        padding: 20px;
    }

    .mode-popular {
        font-size: 0.65rem;
        padding: 5px 12px;
        top: -10px;
    }

    .mode-header {
        margin-bottom: 12px;
        gap: 10px;
    }

    .mode-badge {
        padding: 3px 10px;
        font-size: 0.65rem;
    }

    .mode-card h3 {
        font-size: 1.125rem;
    }

    .mode-desc {
        font-size: 0.8125rem;
        margin-bottom: 16px;
    }

    .mode-visual {
        padding: 12px;
    }

    .example-player,
    .example-imposter {
        font-size: 0.75rem;
        gap: 8px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    /* Reviews */
    .reviews {
        padding: 60px 0;
    }

    .rating-showcase {
        margin-top: 16px;
    }

    .big-stars {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .reviews-masonry {
        margin-top: 32px;
    }

    .review-card {
        padding: 16px;
        margin-bottom: 12px;
    }

    .review-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .review-meta {
        margin-top: 14px;
        padding-top: 12px;
    }

    .review-author {
        font-size: 0.8125rem;
    }

    .review-stars {
        font-size: 0.75rem;
    }

    /* Download CTA */
    .download-cta {
        padding: 60px 0;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        margin-bottom: 20px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .cta-content > p {
        font-size: 0.9375rem;
        margin-bottom: 28px;
    }

    .btn-download {
        padding: 12px 20px;
    }

    .btn-download svg {
        width: 24px;
        height: 24px;
    }

    .btn-download strong {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 24px;
    }

    .footer-brand .logo img {
        width: 32px;
        height: 32px;
    }

    .footer-brand .logo span {
        font-size: 1rem;
    }

    .footer-brand > p {
        font-size: 0.8125rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-col h4 {
        margin-bottom: 10px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.625rem;
    }

    .hero-desc {
        font-size: 0.875rem;
    }

    .feature-tag {
        padding: 5px 8px;
        font-size: 0.7rem;
    }

    .phone-device {
        width: 180px;
    }

    .bento-main h2 {
        font-size: 1.375rem;
    }

    .stat-big {
        font-size: 1.75rem;
    }

    .gallery-item {
        width: 140px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.phone-device {
    animation: float 6s ease-in-out infinite;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(12, 1, 24, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content a {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px;
    color: var(--text-white);
}

.mobile-menu-content a:hover {
    color: var(--accent-cyan);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
