/* ============================================
   JPKUY99 - Landing Page Styles
   Dark Modern Gaming Theme
   ============================================ */

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

:root {
    --bg-dark: #0a0a1a;
    --bg-primary: #0f0f2a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #6C5CE7;
    --primary-light: #a29bfe;
    --accent: #00CEFF;
    --accent-green: #00E676;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --gradient-main: linear-gradient(135deg, #6C5CE7, #00CEFF);
    --gradient-warm: linear-gradient(135deg, #6C5CE7, #e84393);
    --shadow-glow: 0 0 60px rgba(108, 92, 231, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-family: var(--font-main); font-size: 0.95rem;
    cursor: pointer; transition: var(--transition); border: none;
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--gradient-main); color: #fff;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}
.btn-outline {
    background: transparent; color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(108, 92, 231, 0.1);
}
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-xl { padding: 18px 48px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-nav { font-size: 0.9rem; padding: 10px 24px; }

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

/* Section tags */
.section-tag {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(108, 92, 231, 0.15); color: var(--primary-light);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 16px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem; color: var(--text-secondary);
    max-width: 600px; margin-bottom: 48px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
    color: var(--text-primary); z-index: 10;
}
.nav-links {
    display: flex; align-items: center; gap: 32px;
}
.nav-link {
    font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
    transition: var(--transition); position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
    height: 2px; background: var(--gradient-main);
    transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
    z-index: 10;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--text-primary);
    transition: var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(30px); z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; align-items: center; justify-content: center;
}
.mobile-menu.open { right: 0; }
.mobile-menu-links {
    display: flex; flex-direction: column; align-items: center;
    gap: 24px; width: 100%; padding: 0 40px;
}
.mobile-link {
    font-size: 1.5rem; font-weight: 600; color: var(--text-secondary);
    transition: var(--transition);
}
.mobile-link:hover { color: var(--text-primary); }
.mobile-menu .btn-block { max-width: 280px; font-size: 1.1rem; margin-top: 16px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 72px;
    background: radial-gradient(ellipse at 30% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(0, 206, 255, 0.08) 0%, transparent 50%),
                var(--bg-dark);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.4;
}
.orb-1 { width: 400px; height: 400px; background: var(--primary); top: -10%; left: -5%; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: var(--accent); bottom: 10%; right: -5%; animation: float 10s ease-in-out infinite reverse; }
.orb-3 { width: 200px; height: 200px; background: #e84393; top: 40%; right: 30%; animation: float 12s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 50px;
    background: var(--bg-glass); border: 1px solid var(--border-glass);
    font-size: 0.82rem; font-weight: 500; color: var(--text-secondary);
    margin-bottom: 24px; backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-green);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 520px; margin-bottom: 32px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
    display: flex; align-items: center; gap: 24px;
    padding: 20px 28px; border-radius: var(--radius);
    background: var(--bg-glass); border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    background: var(--gradient-main); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border-glass); }

/* Hero Phone */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup { position: relative; }
.phone-frame {
    width: 280px; height: 560px;
    background: linear-gradient(145deg, #1a1a3e, #0d0d25);
    border-radius: 36px; padding: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.phone-screen {
    width: 100%; height: 100%; border-radius: 24px;
    background: linear-gradient(180deg, #12122e, #0a0a20);
    overflow: hidden; position: relative;
}
.phone-notch {
    width: 120px; height: 24px; margin: 0 auto;
    background: #0a0a1a; border-radius: 0 0 16px 16px;
}
.phone-ui { padding: 20px 16px; }
.phone-top-bar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
}
.p-logo { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; }
.p-user { font-size: 1.2rem; }
.phone-games { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.pg {
    padding: 18px 12px; border-radius: 14px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 0.8rem; font-weight: 500;
    transition: var(--transition);
}
.pg span { display: block; font-size: 1.6rem; margin-bottom: 6px; }
.pg-1 { border-color: rgba(108,92,231,0.3); }
.pg-2 { border-color: rgba(232,67,147,0.3); }
.pg-3 { border-color: rgba(0,206,255,0.3); }
.pg-4 { border-color: rgba(0,230,118,0.3); }
.phone-play-btn {
    background: var(--gradient-main); color: #fff;
    padding: 14px; border-radius: 12px; text-align: center;
    font-weight: 600; font-size: 0.9rem;
}

/* Floating elements */
.float-el {
    position: absolute; font-size: 2rem;
    animation: float-el 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.fe-1 { top: -10px; right: -30px; animation-delay: 0s; }
.fe-2 { top: 40%; left: -40px; animation-delay: 2s; }
.fe-3 { bottom: 10%; right: -20px; animation-delay: 4s; }
@keyframes float-el {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.hero-wave {
    position: absolute; bottom: 0; left: 0; width: 100%;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; }

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section { padding: 100px 0; position: relative; }
.section-about { background: var(--bg-dark); }
.section-features { background: var(--bg-primary); }
.section-steps { background: var(--bg-dark); }
.section-games { background: var(--bg-primary); }
.section-faq { background: var(--bg-dark); }

/* ============================================
   TENTANG / ABOUT
   ============================================ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-card-stack {
    position: relative; height: 400px;
}
.about-card {
    position: absolute; width: 260px; padding: 28px 24px;
    border-radius: var(--radius); backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
}
.about-card:hover { transform: translateY(-8px) !important; }
.ac-1 { top: 0; left: 0; z-index: 3; }
.ac-2 { top: 120px; left: 60px; z-index: 2; }
.ac-3 { top: 240px; left: 20px; z-index: 1; }
.ac-icon { font-size: 2rem; margin-bottom: 12px; }
.about-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.about-card p { font-size: 0.82rem; color: var(--text-muted); }

.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.af-item { display: flex; align-items: center; gap: 12px; }
.af-check {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(0, 230, 118, 0.15); color: var(--accent-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.af-item span { font-size: 0.95rem; color: var(--text-secondary); }

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
    padding: 36px 28px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border-glass);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
}
.fi-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(108, 92, 231, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.fi { font-size: 1.6rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}
.step-card {
    text-align: center; padding: 40px 32px; border-radius: var(--radius);
    background: var(--bg-card); border: 1px solid var(--border-glass);
    flex: 1; min-width: 220px; max-width: 300px;
    transition: var(--transition); position: relative;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(108,92,231,0.3); }
.step-num {
    font-family: var(--font-display); font-size: 3rem; font-weight: 900;
    background: var(--gradient-main); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.2; position: absolute; top: 16px; right: 20px;
}
.step-icon { font-size: 2.4rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); }
.step-connector { display: flex; align-items: center; padding-top: 60px; }

/* ============================================
   GAMES
   ============================================ */
.games-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.game-card {
    position: relative; border-radius: var(--radius);
    overflow: hidden; min-height: 280px;
    border: 1px solid var(--border-glass);
    transition: var(--transition); cursor: default;
}
.game-card:hover { transform: translateY(-6px); border-color: rgba(108,92,231,0.3); }
.game-card-bg { position: absolute; inset: 0; }
.gc-1 .game-card-bg { background: linear-gradient(135deg, rgba(108,92,231,0.2), rgba(108,92,231,0.05)); }
.gc-2 .game-card-bg { background: linear-gradient(135deg, rgba(232,67,147,0.2), rgba(232,67,147,0.05)); }
.gc-3 .game-card-bg { background: linear-gradient(135deg, rgba(0,206,255,0.2), rgba(0,206,255,0.05)); }
.gc-4 .game-card-bg { background: linear-gradient(135deg, rgba(0,230,118,0.2), rgba(0,230,118,0.05)); }
.game-card-content { position: relative; z-index: 1; padding: 36px 28px; height: 100%; display: flex; flex-direction: column; }
.game-emoji { font-size: 3rem; margin-bottom: 16px; }
.game-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.game-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.game-tag {
    display: inline-block; margin-top: 16px; padding: 4px 14px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 600;
    background: rgba(108,92,231,0.15); color: var(--primary-light);
    border: 1px solid rgba(108,92,231,0.2);
}

/* ============================================
   CTA
   ============================================ */
.section-cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(108,92,231,0.15) 0%, var(--bg-dark) 70%);
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.3;
}
.cta-orb-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; left: 20%; }
.cta-orb-2 { width: 300px; height: 300px; background: var(--accent); bottom: -80px; right: 20%; }
.cta-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 20px; position: relative; z-index: 1;
}
.cta-desc {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 580px; margin: 0 auto 40px; line-height: 1.7;
    position: relative; z-index: 1;
}
.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(108, 92, 231, 0.7), 0 0 80px rgba(0, 206, 255, 0.2); }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(108,92,231,0.2); }
.faq-question {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; padding: 20px 24px;
    background: none; border: none; color: var(--text-primary);
    font-family: var(--font-main); font-size: 1rem; font-weight: 600;
    cursor: pointer; text-align: left; gap: 16px;
}
.faq-chevron {
    transition: transform 0.3s ease; flex-shrink: 0;
    color: var(--text-muted);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--primary-light); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary); border-top: 1px solid var(--border-glass);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 40px;
    border-bottom: 1px solid var(--border-glass);
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.2rem; margin-bottom: 16px;
}
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer-links h4 {
    font-size: 0.9rem; font-weight: 700; margin-bottom: 16px;
    color: var(--text-primary);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.88rem; color: var(--text-muted);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); transform: translateX(4px); display: inline-block; }
.footer-bottom {
    padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate].animated { opacity: 1; transform: translate(0, 0); }

/* ============================================
   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-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-card-stack { height: 340px; }
    .about-content { text-align: center; }
    .about-content .section-desc { margin-left: auto; margin-right: auto; }
    .about-features { align-items: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-nav { display: none; }
    .hamburger { display: flex; }

    .hero { min-height: auto; padding: 120px 0 100px; }
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 50px; height: 1px; }

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

    .section { padding: 70px 0; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

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

    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); padding-top: 0; margin: -10px 0; }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .phone-frame { width: 200px; height: 400px; }
    .about-card-stack { display: flex; flex-direction: column; gap: 12px; height: auto; }
    .about-card { position: static; width: 100%; }
    .faq-question { font-size: 0.92rem; padding: 16px 18px; }
    .game-card { min-height: 220px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(108,92,231,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(108,92,231,0.5); }

/* Selection */
::selection { background: rgba(108,92,231,0.4); color: #fff; }