/* ═══════════════════════════════════════════════════════════════════
   POCKETINCOMING — POKEMON DESIGN SYSTEM
═══════════════════════════════════════════════════════════════════ */
:root {
    --electric: #F7D02C; --fire: #EE8130; --water: #6390F0;
    --psychic: #F95587; --dragon: #6F35FC; --ghost: #735797;
    --ice: #96D9D6; --grass: #7AC74C;
    --red: #CC0000; --red-bright: #FF1A1A;
    --yellow: #FFD700; --purple: #7B2FFF;
    --bg: #07080F; --bg-2: #0B0C1A; --bg-3: #0F1020;
    --surface: rgba(255,255,255,0.035); --surface-2: rgba(255,255,255,0.06);
    --border: rgba(255,255,255,0.08); --border-bright: rgba(255,255,255,0.15);
    --text: #F0F0F8; --text-2: rgba(240,240,248,0.7); --text-3: rgba(240,240,248,0.45);
    --radius: 20px; --radius-sm: 12px; --radius-xs: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--bg); color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden; line-height: 1.6; min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* Background particle canvas */
#px-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.85; }

/* ─── NAV ─────────────────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    height: 70px; display: flex; align-items: center;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
    background: rgba(7,8,15,0.7);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.pokeball {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(to bottom, var(--red) 50%, #fff 50%);
    position: relative; box-shadow: 0 0 14px rgba(204,0,0,0.55);
    animation: pokeball-spin 6s linear infinite; flex-shrink: 0;
}
.pokeball::before {
    content: ''; position: absolute; left: 0; right: 0;
    top: 50%; transform: translateY(-50%);
    height: 3px; background: #111;
}
.pokeball::after {
    content: ''; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 11px; height: 11px; border-radius: 50%;
    background: #fff; border: 3px solid #111;
    box-shadow: 0 0 6px rgba(255,255,255,0.6), inset 0 0 4px rgba(0,0,0,0.2);
}
@keyframes pokeball-spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem; letter-spacing: 0.05em;
    background: linear-gradient(135deg, #fff 0%, var(--yellow) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-spacer { flex: 1; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* ─── SEO language banner (hreflang pages) ─────────────────────────── */
.seo-lang-banner {
    position: relative; z-index: 850;
    background: rgba(247,208,44,0.08); border-bottom: 1px solid rgba(247,208,44,0.2);
    padding: 0.65rem clamp(1.25rem, 5vw, 4rem);
}
.seo-lang-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem;
    font-size: 0.84rem; color: var(--text-2);
}
.seo-lang-banner-inner strong { color: var(--yellow); font-weight: 700; }
.seo-lang-banner-inner a {
    margin-left: auto; color: var(--yellow); text-decoration: none; font-weight: 600;
}
.seo-lang-banner-inner a:hover { text-decoration: underline; }

/* ─── Hero kicker (SEO) ───────────────────────────────────────────── */
.hero-kicker {
    font-size: 0.82rem; font-weight: 600; color: var(--yellow);
    letter-spacing: 0.02em; margin: 0 0 0.65rem;
    font-family: 'Exo 2', sans-serif; opacity: 0.95;
}

/* ─── SEO content section ─────────────────────────────────────────── */
.seo-content { background: linear-gradient(180deg, transparent, rgba(123,47,255,0.03)); }
.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}
.seo-block {
    padding: 1.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    min-width: 0;
}
.seo-block h3 {
    font-family: 'Exo 2', sans-serif; font-size: 1rem; font-weight: 700;
    color: var(--text); margin: 0 0 0.65rem; line-height: 1.35;
}
.seo-block p {
    margin: 0; font-size: 0.88rem; line-height: 1.65; color: var(--text-2);
}
.seo-block a { color: var(--yellow); text-decoration: none; }
.seo-block a:hover { text-decoration: underline; }
.seo-block strong { color: var(--text); font-weight: 600; }

nav.seo-link-grid,
.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}
nav.seo-link-grid .seo-link-card,
.seo-link-card {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.2s;
    text-align: center;
    line-height: 1.35;
}
nav.seo-link-grid .seo-link-card:hover,
.seo-link-card:hover {
    color: var(--yellow);
    border-color: rgba(247,208,44,0.35);
    background: rgba(247,208,44,0.04);
    transform: translateY(-2px);
}
.faq-more { text-align: center; margin-top: 1.5rem; }
.faq-more a { color: var(--yellow); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.faq-more a:hover { text-decoration: underline; }

/* ─── SEO landing pages ───────────────────────────────────────────── */
.landing-page { background: var(--bg); }
.nav-landing { position: sticky; top: 0; z-index: 100; }
.landing-hero {
    position: relative; z-index: 1;
    padding: 5rem clamp(1.25rem, 5vw, 4rem) 3rem;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,47,255,0.12), transparent);
}
.landing-hero-inner { max-width: 820px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; color: var(--text-3); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--text-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.landing-h1 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 3.8rem);
    letter-spacing: 0.03em; line-height: 1.05; margin: 0 0 1rem; color: var(--text);
}
.landing-lead { font-size: 1.05rem; line-height: 1.65; color: var(--text-2); margin: 0 0 1.75rem; max-width: 640px; }
.landing-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.landing-cta-center { justify-content: center; margin-top: 1.5rem; }
.landing-meta { font-size: 0.8rem; color: var(--text-3); margin: 1.25rem 0 0; }
.landing-main { position: relative; z-index: 1; }
.landing-section { padding: 3.5rem clamp(1.25rem, 5vw, 4rem); }
.landing-section .section-inner { max-width: 820px; margin: 0 auto; }
.landing-article { margin-bottom: 2rem; }
.landing-article:last-child { margin-bottom: 0; }
.landing-article h2 {
    font-family: 'Exo 2', sans-serif; font-size: 1.25rem; font-weight: 800;
    color: var(--text); margin: 0 0 0.65rem;
}
.landing-article p { margin: 0; font-size: 0.95rem; line-height: 1.7; color: var(--text-2); }
.landing-h2-center {
    font-family: 'Exo 2', sans-serif; font-size: 1.5rem; font-weight: 800;
    text-align: center; margin: 0 0 1.75rem; color: var(--text);
}
.landing-download-strip {
    padding: 3rem clamp(1.25rem, 5vw, 4rem);
    background: rgba(247,208,44,0.04); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.landing-download-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.landing-download-inner h2 { font-family: 'Exo 2', sans-serif; font-size: 1.4rem; margin: 0 0 0.5rem; }
.landing-download-inner p { color: var(--text-2); margin: 0 0 1.25rem; }
.install-steps {
    max-width: 560px; margin: 0 auto 1rem; padding-left: 1.25rem;
    color: var(--text-2); line-height: 1.75; font-size: 0.95rem;
}
.install-steps li { margin-bottom: 0.65rem; }
.install-steps strong { color: var(--text); }
.landing-more-faq { text-align: center; margin-top: 1.5rem; }
.landing-more-faq a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.landing-links { background: rgba(123,47,255,0.03); }
.landing-footer { position: relative; z-index: 1; }

.btn-nav {
    padding: 0.5rem 1.2rem; border-radius: 100px;
    font-size: 0.86rem; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: all 0.2s;
    font-family: 'Inter', sans-serif; border: 1px solid var(--border);
    background: transparent; color: var(--text-2);
}
.btn-nav:hover { background: var(--surface-2); color: var(--text); border-color: var(--border-bright); }
.btn-nav-apk {
    padding: 0.55rem 1.3rem; border-radius: 100px; border: none;
    background: linear-gradient(135deg, var(--yellow) 0%, #FF8C00 100%);
    color: #111; font-size: 0.86rem; font-weight: 800;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0 22px rgba(247,208,44,0.4);
    display: inline-flex; align-items: center; gap: 0.4rem;
    letter-spacing: 0.01em;
}
.btn-nav-apk:hover { transform: translateY(-1px); box-shadow: 0 4px 32px rgba(247,208,44,0.55); filter: brightness(1.06); }
.btn-nav-discord {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem; border-radius: 100px;
    background: rgba(88,101,242,0.18); color: #fff;
    font-size: 0.88rem; font-weight: 700; text-decoration: none;
    border: 1px solid rgba(88,101,242,0.45);
    transition: all 0.22s; font-family: 'Exo 2', sans-serif;
    white-space: nowrap;
}
.btn-nav-discord:hover {
    background: rgba(88,101,242,0.32); border-color: rgba(88,101,242,0.7);
    transform: translateY(-1px); box-shadow: 0 4px 24px rgba(88,101,242,0.35);
}
.nav-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--red));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; color: #fff;
    text-decoration: none; border: 2px solid var(--border-bright);
    transition: all 0.2s;
}
.nav-avatar:hover { transform: scale(1.05); box-shadow: 0 0 16px rgba(123,47,255,0.4); }

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
    position: relative; z-index: 1; min-height: 100vh;
    display: flex; align-items: center;
    padding: 110px clamp(1.25rem, 5vw, 4rem) 80px;
    overflow: hidden;
}
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
    animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(247,208,44,0.14) 0%, transparent 70%); top: -120px; right: 8%; }
.hero-orb-2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(204,0,0,0.11) 0%, transparent 70%); bottom: -60px; left: 4%; animation-delay: -3s; }
.hero-orb-3 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(123,47,255,0.12) 0%, transparent 70%); top: 40%; left: 40%; animation-delay: -5s; }
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, 10px); }
}

.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; max-width: 1240px; margin: 0 auto; width: 100%;
    align-items: center;
}

.btn-discord-hero {
    display: inline-flex; align-items: center; gap: 0.85rem;
    width: 100%; max-width: 420px;
    padding: 0.85rem 1.15rem; margin-bottom: 1.25rem;
    border-radius: 16px; text-decoration: none; color: #fff;
    background: linear-gradient(135deg, rgba(88,101,242,0.95) 0%, rgba(71,82,196,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px rgba(88,101,242,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
    transition: all 0.25s; position: relative; overflow: hidden;
    font-family: 'Exo 2', sans-serif;
}
.btn-discord-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
    transform: translateX(-120%); transition: transform 0.6s ease;
}
.btn-discord-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(88,101,242,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
    filter: brightness(1.05);
}
.btn-discord-hero:hover::before { transform: translateX(120%); }
.btn-discord-icon {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: rgba(0,0,0,0.2); color: #fff;
}
.btn-discord-copy {
    display: flex; flex-direction: column; gap: 0.15rem;
    flex: 1; min-width: 0; text-align: left;
}
.btn-discord-copy strong {
    font-size: 0.95rem; font-weight: 800; letter-spacing: 0.01em; line-height: 1.2;
}
.btn-discord-copy span {
    font-size: 0.74rem; font-weight: 500; color: rgba(255,255,255,0.82); line-height: 1.3;
}
.btn-discord-live {
    display: inline-flex; align-items: center; gap: 0.35rem; flex-shrink: 0;
    padding: 0.25rem 0.55rem; border-radius: 100px;
    background: rgba(0,0,0,0.22); font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.btn-discord-live .badge-dot { width: 5px; height: 5px; background: #7AC74C; box-shadow: 0 0 8px #7AC74C; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0.95rem; border-radius: 100px;
    border: 1px solid rgba(247,208,44,0.3);
    background: rgba(247,208,44,0.08);
    font-size: 0.72rem; font-weight: 700;
    color: var(--yellow); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 1.5rem;
    font-family: 'Exo 2', sans-serif;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--yellow); box-shadow: 0 0 10px var(--yellow);
    animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: 0.95; letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}
.hero-title-line1 { display: block; color: var(--text); }
.hero-title-line2 {
    display: block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--red-bright) 45%, var(--purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease-in-out infinite;
    filter: drop-shadow(0 0 32px rgba(247,208,44,0.18));
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc {
    font-size: 1.05rem; color: var(--text-2);
    line-height: 1.7; margin-bottom: 2.25rem; max-width: 480px;
}

.hero-cta {
    display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap; margin-bottom: 1.5rem;
}
.hero-trust {
    list-style: none; display: flex; flex-direction: column; gap: 0.55rem;
    max-width: 480px; margin-bottom: 2.25rem; padding: 0;
}
.hero-trust-item {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 0.78rem; line-height: 1.45; color: var(--text-3);
}
.hero-trust-item strong { color: var(--text-2); font-weight: 600; }
.hero-trust-icon {
    flex-shrink: 0; width: 1.35rem; text-align: center;
    font-size: 0.9rem; line-height: 1.35;
}
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 0.65rem;
    padding: 1rem 2.1rem; border-radius: 100px;
    background: linear-gradient(135deg, var(--yellow) 0%, #FF8C00 100%);
    color: #111; font-size: 1.02rem; font-weight: 800;
    text-decoration: none; letter-spacing: 0.02em;
    box-shadow: 0 0 0 0 rgba(247,208,44,0.5), 0 10px 32px rgba(247,208,44,0.28);
    transition: all 0.25s; animation: btn-pulse 2.5s ease-in-out infinite;
    font-family: 'Exo 2', sans-serif; border: none; cursor: pointer;
}
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247,208,44,0.5), 0 10px 32px rgba(247,208,44,0.28); }
    50% { box-shadow: 0 0 0 12px rgba(247,208,44,0), 0 10px 44px rgba(247,208,44,0.48); }
}
.btn-hero-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 0 rgba(247,208,44,0), 0 18px 52px rgba(247,208,44,0.55);
    filter: brightness(1.06);
}
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 1.85rem; border-radius: 100px;
    background: var(--surface); color: var(--text);
    font-size: 1rem; font-weight: 600; text-decoration: none;
    border: 1px solid var(--border-bright);
    transition: all 0.25s; font-family: 'Exo 2', sans-serif;
    cursor: pointer; backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
    background: var(--surface-2); border-color: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.hero-stats { display: flex; gap: 2.25rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.95rem; letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--yellow), #fff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.72rem; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.08em;
    font-weight: 600;
}

/* Hero showcase — 3D rotating legendary card */
.hero-showcase {
    position: relative; display: flex;
    align-items: center; justify-content: center;
    height: 540px;
}
.showcase-orb {
    position: absolute; width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,208,44,0.10) 0%, rgba(204,0,0,0.06) 50%, transparent 70%);
    animation: orb-pulse 3.5s ease-in-out infinite;
}
@keyframes orb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}
.showcase-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid; animation: ring-rotate linear infinite;
    pointer-events: none;
}
.showcase-ring-1 { width: 320px; height: 320px; border-color: rgba(247,208,44,0.18); animation-duration: 14s; }
.showcase-ring-2 { width: 400px; height: 400px; border-color: rgba(204,0,0,0.13); animation-duration: 22s; animation-direction: reverse; }
.showcase-ring-3 { width: 480px; height: 480px; border-color: rgba(123,47,255,0.10); animation-duration: 32s; }
@keyframes ring-rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.showcase-ring-1::after, .showcase-ring-2::after, .showcase-ring-3::after {
    content: ''; position: absolute;
    width: 9px; height: 9px; border-radius: 50%;
    top: -4.5px; left: 50%; transform: translateX(-50%);
}
.showcase-ring-1::after { background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
.showcase-ring-2::after { background: var(--red-bright); box-shadow: 0 0 12px var(--red-bright); }
.showcase-ring-3::after { background: var(--purple); box-shadow: 0 0 12px var(--purple); }

.showcase-poke {
    position: relative; z-index: 5;
    animation: poke-float 4s ease-in-out infinite;
}
.showcase-poke img {
    width: 280px; height: 280px; object-fit: contain;
    filter: drop-shadow(0 0 36px rgba(247,208,44,0.45)) drop-shadow(0 0 70px rgba(204,0,0,0.22));
    transition: opacity 0.5s ease;
}
@keyframes poke-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.showcase-name {
    position: absolute; top: 14px; left: 50%;
    transform: translateX(-50%); z-index: 6;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: 0.15em;
    color: #fff; text-shadow: 0 0 20px rgba(0,0,0,0.8);
    white-space: nowrap;
}
.showcase-types {
    position: absolute; bottom: 8px; left: 50%;
    transform: translateX(-50%); z-index: 6;
    display: flex; gap: 0.45rem;
}
.type-pill {
    padding: 0.28rem 0.75rem; border-radius: 100px;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-family: 'Exo 2', sans-serif;
    backdrop-filter: blur(6px);
}
.type-dragon { background: rgba(111,53,252,0.32); border: 1px solid rgba(111,53,252,0.55); color: #B89DFF; }
.type-psychic { background: rgba(249,85,135,0.32); border: 1px solid rgba(249,85,135,0.55); color: #FFA0B8; }
.type-ice { background: rgba(150,217,214,0.22); border: 1px solid rgba(150,217,214,0.55); color: #B8ECEA; }
.type-electric { background: rgba(247,208,44,0.22); border: 1px solid rgba(247,208,44,0.55); color: #F7D02C; }
.type-fire { background: rgba(238,129,48,0.22); border: 1px solid rgba(238,129,48,0.55); color: #FFB179; }
.type-ghost { background: rgba(115,87,151,0.32); border: 1px solid rgba(115,87,151,0.55); color: #C5B4DD; }
.type-grass { background: rgba(122,199,76,0.22); border: 1px solid rgba(122,199,76,0.55); color: #BCE89A; }

.showcase-dots {
    position: absolute; bottom: -32px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 8px; z-index: 7;
}
.showcase-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); border: 1px solid var(--border-bright);
    cursor: pointer; transition: all 0.25s;
}
.showcase-dot.active { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); transform: scale(1.2); }

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 1.75rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-3); font-size: 0.68rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 600;
    animation: scroll-bounce 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 14px; height: 14px;
    border-right: 2px solid var(--text-3);
    border-bottom: 2px solid var(--text-3);
    transform: rotate(45deg);
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── SECTION COMMONS ─────────────────────────────────────────────── */
.section {
    position: relative; z-index: 1;
    padding: 6rem clamp(1.25rem, 5vw, 4rem);
}
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-head { margin-bottom: 3rem; }
.section-label {
    display: inline-flex; align-items: center; gap: 0.65rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--yellow);
    margin-bottom: 1rem; font-family: 'Exo 2', sans-serif;
}
.section-label::before {
    content: ''; width: 24px; height: 2px;
    background: var(--yellow); border-radius: 1px;
    box-shadow: 0 0 8px var(--yellow);
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.03em; line-height: 1.05;
    margin-bottom: 1rem;
}
.section-title .accent {
    background: linear-gradient(135deg, var(--yellow), var(--red-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub {
    font-size: 1.05rem; color: var(--text-2);
    max-width: 620px; line-height: 1.7;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ─── LEGENDARIES (Meet) ──────────────────────────────────────────── */
.meet {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.meet-inner {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 2rem; align-items: stretch;
}
.meet-video-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: #000; aspect-ratio: 16/9;
    border: 1px solid var(--border-bright);
    box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 80px rgba(123,47,255,0.06);
}
.meet-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.meet-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(7,8,15,0.7) 0%, transparent 35%, transparent 65%, rgba(7,8,15,0.5) 100%),
                linear-gradient(to top, rgba(7,8,15,0.9) 0%, transparent 50%);
    pointer-events: none;
}
.meet-video-info { position: absolute; bottom: 1.75rem; left: 1.75rem; z-index: 3; }
.meet-video-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem; letter-spacing: 0.04em; color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.9);
    margin-bottom: 0.25rem;
}
.meet-video-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.8);
    max-width: 380px; line-height: 1.55;
}

.meet-thumbs {
    display: flex; flex-direction: column; gap: 0.65rem;
    max-height: 540px; overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: var(--border-bright) transparent;
}
.meet-thumbs::-webkit-scrollbar { width: 6px; }
.meet-thumbs::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }
.meet-thumb {
    display: flex; align-items: center; gap: 0.85rem;
    padding: 0.7rem; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface);
    cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.meet-thumb:hover { background: var(--surface-2); border-color: var(--border-bright); transform: translateX(4px); }
.meet-thumb.active {
    border-color: rgba(247,208,44,0.5); background: rgba(247,208,44,0.06);
    box-shadow: 0 0 0 1px rgba(247,208,44,0.25), inset 0 0 28px rgba(247,208,44,0.05);
}
.meet-thumb-img {
    width: 58px; height: 58px; border-radius: 10px;
    object-fit: contain; flex-shrink: 0;
    background: rgba(0,0,0,0.4); padding: 4px;
}
.meet-thumb-label {
    font-size: 0.92rem; font-weight: 600;
    color: var(--text); font-family: 'Exo 2', sans-serif;
}

/* ─── GAMEPLAY SCREENSHOTS ─────────────────────────────────────────── */
.gameplay {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 45%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.gameplay-showcase {
    display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 2.5rem; align-items: center; margin-bottom: 2.5rem;
}
.gameplay-device-wrap {
    position: relative; display: flex; justify-content: center;
    padding: 0.5rem 0 2rem;
}
.gameplay-device-glow {
    position: absolute; width: 92%; height: 85%; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(247,208,44,0.15) 0%, rgba(123,47,255,0.09) 45%, transparent 72%);
    filter: blur(28px); pointer-events: none;
}
.gameplay-device {
    position: relative; z-index: 2;
    width: min(100%, clamp(460px, 68vw, 780px));
    padding: 10px 12px 14px; border-radius: 34px;
    background: linear-gradient(160deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 32px 90px rgba(0,0,0,0.58),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 0 70px rgba(247,208,44,0.09);
}
.gameplay-device-notch {
    display: block;
    width: 52px; height: 5px; margin: 0 auto 8px; border-radius: 100px;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 6px rgba(0,0,0,0.35);
}
.gameplay-device-screen {
    display: block; width: 100%; padding: 0; border: none; background: #050508;
    border-radius: 22px; overflow: hidden; cursor: zoom-in;
    aspect-ratio: 16 / 9; position: relative;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gameplay-device-screen:hover {
    transform: scale(1.012);
    box-shadow: 0 0 0 1px rgba(247,208,44,0.25) inset, 0 0 40px rgba(247,208,44,0.12);
}
.gameplay-device-screen img {
    width: 100%; height: 100%; object-fit: contain; object-position: center center;
    display: block; transition: opacity 0.25s ease; background: #050508;
}
.gameplay-device-shadow {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 62%; height: 16px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, transparent 72%);
    filter: blur(4px); pointer-events: none;
}
.gameplay-info { display: flex; flex-direction: column; gap: 0.85rem; }
.gameplay-tag {
    display: inline-flex; align-self: flex-start;
    padding: 0.35rem 0.85rem; border-radius: 100px;
    background: rgba(247,208,44,0.1); border: 1px solid rgba(247,208,44,0.28);
    color: var(--yellow); font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
    font-family: 'Exo 2', sans-serif;
}
.gameplay-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: 0.03em; line-height: 1.05; color: var(--text);
}
.gameplay-desc {
    font-size: 1rem; color: var(--text-2); line-height: 1.7; max-width: 420px;
}
.gameplay-counter {
    font-size: 0.78rem; font-weight: 700; color: var(--text-3);
    letter-spacing: 0.08em; text-transform: uppercase;
    font-family: 'Exo 2', sans-serif;
}
.gameplay-nav { display: flex; gap: 0.65rem; margin-top: 0.35rem; }
.gameplay-nav-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--border-bright); background: var(--surface);
    color: var(--text); font-size: 1.1rem; cursor: pointer;
    transition: all 0.22s; font-family: inherit;
}
.gameplay-nav-btn:hover {
    background: var(--surface-2); border-color: rgba(247,208,44,0.35);
    color: var(--yellow); transform: translateY(-1px);
}
.gameplay-thumbs {
    display: flex; gap: 0.85rem; overflow-x: auto;
    padding: 0.35rem 0.25rem 0.85rem;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.gameplay-thumbs::-webkit-scrollbar { height: 6px; }
.gameplay-thumbs::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }
.gameplay-thumb {
    flex: 0 0 auto; width: 118px; padding: 0; border: none; background: none;
    cursor: pointer; scroll-snap-align: start; text-align: center;
    transition: transform 0.22s;
}
.gameplay-thumb:hover { transform: translateY(-3px); }
.gameplay-thumb-frame {
    display: block; border-radius: 14px; overflow: hidden;
    aspect-ratio: 9 / 16; border: 2px solid transparent;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transition: border-color 0.22s, box-shadow 0.22s;
}
.gameplay-thumb-frame img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    display: block; opacity: 0.82; transition: opacity 0.22s;
}
.gameplay-thumb-label {
    display: block; margin-top: 0.45rem;
    font-size: 0.65rem; font-weight: 700; color: var(--text-3);
    letter-spacing: 0.06em; text-transform: uppercase;
    font-family: 'Exo 2', sans-serif; transition: color 0.22s;
}
.gameplay-thumb.active .gameplay-thumb-frame {
    border-color: var(--yellow);
    box-shadow: 0 0 0 1px rgba(247,208,44,0.2), 0 10px 30px rgba(247,208,44,0.15);
}
.gameplay-thumb.active .gameplay-thumb-frame img { opacity: 1; }
.gameplay-thumb.active .gameplay-thumb-label { color: var(--yellow); }

.gameplay-lightbox {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem; background: rgba(4,5,10,0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gameplay-lightbox.open {
    opacity: 1; visibility: visible; pointer-events: auto;
}
.gameplay-lightbox img {
    max-width: min(640px, 100%); max-height: 92vh;
    border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.1);
}
.gameplay-lightbox-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--border-bright); background: var(--surface);
    color: var(--text); font-size: 1.6rem; line-height: 1; cursor: pointer;
    transition: all 0.2s;
}
.gameplay-lightbox-close:hover {
    background: var(--surface-2); color: var(--yellow);
    border-color: rgba(247,208,44,0.35);
}

/* ─── FEATURES ────────────────────────────────────────────────────── */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.feat-card {
    padding: 1.75rem; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--surface);
    transition: all 0.3s; position: relative; overflow: hidden;
}
.feat-card::before {
    content: ''; position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.3s; border-radius: inherit;
}
.feat-card:hover {
    transform: translateY(-5px); border-color: var(--border-bright);
    background: var(--surface-2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feat-card:hover::before { opacity: 1; }
.feat-card-electric::before { background: radial-gradient(circle at 100% 0%, rgba(247,208,44,0.10), transparent 60%); }
.feat-card-fire::before { background: radial-gradient(circle at 100% 0%, rgba(238,129,48,0.10), transparent 60%); }
.feat-card-water::before { background: radial-gradient(circle at 100% 0%, rgba(99,144,240,0.10), transparent 60%); }
.feat-card-psychic::before { background: radial-gradient(circle at 100% 0%, rgba(249,85,135,0.10), transparent 60%); }
.feat-card-dragon::before { background: radial-gradient(circle at 100% 0%, rgba(111,53,252,0.10), transparent 60%); }
.feat-card-grass::before { background: radial-gradient(circle at 100% 0%, rgba(122,199,76,0.10), transparent 60%); }

.feat-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem; margin-bottom: 1.25rem;
    border: 1px solid;
}
.feat-icon-electric { background: rgba(247,208,44,0.12); border-color: rgba(247,208,44,0.30); }
.feat-icon-fire { background: rgba(238,129,48,0.12); border-color: rgba(238,129,48,0.30); }
.feat-icon-water { background: rgba(99,144,240,0.12); border-color: rgba(99,144,240,0.30); }
.feat-icon-psychic { background: rgba(249,85,135,0.12); border-color: rgba(249,85,135,0.30); }
.feat-icon-dragon { background: rgba(111,53,252,0.12); border-color: rgba(111,53,252,0.30); }
.feat-icon-grass { background: rgba(122,199,76,0.12); border-color: rgba(122,199,76,0.30); }

.feat-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.08rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.55rem;
    letter-spacing: 0.01em;
}
.feat-desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ─── DOWNLOAD ────────────────────────────────────────────────────── */
.download-section {
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center;
}
.download-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 900px 450px at 50% 100%, rgba(247,208,44,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.download-inner { position: relative; z-index: 2; }
.download-section .section-title { font-size: clamp(2.5rem, 6vw, 4.5rem); }

.download-card {
    margin-top: 3rem; display: inline-flex;
    flex-direction: column; align-items: center; gap: 1.25rem;
}
.btn-download-apk {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.85rem; padding: 1.2rem 3rem; border-radius: 100px;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 45%, var(--red-bright) 100%);
    background-size: 200% 200%;
    color: #111; font-size: 1.15rem; font-weight: 800;
    text-decoration: none; letter-spacing: 0.02em;
    font-family: 'Exo 2', sans-serif;
    box-shadow: 0 0 50px rgba(247,208,44,0.4), 0 18px 50px rgba(247,208,44,0.25);
    transition: all 0.3s; animation: dl-glow 3.5s ease-in-out infinite;
}
@keyframes dl-glow {
    0%, 100% { background-position: 0% 50%; box-shadow: 0 0 50px rgba(247,208,44,0.4), 0 18px 50px rgba(247,208,44,0.25); }
    50% { background-position: 100% 50%; box-shadow: 0 0 80px rgba(255,26,26,0.55), 0 24px 70px rgba(247,208,44,0.4); }
}
.btn-download-apk:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.08); }
.btn-download-apk-icon { font-size: 1.4rem; }

.download-meta {
    font-size: 0.82rem; color: var(--text-3);
    letter-spacing: 0.04em; font-weight: 500;
}
.download-meta strong { color: var(--text-2); font-weight: 600; }

.download-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.dl-badge {
    display: flex; align-items: center; gap: 0.45rem;
    font-size: 0.82rem; color: var(--text-3); font-weight: 500;
}
.dl-badge::before {
    content: '✓'; width: 22px; height: 22px;
    border-radius: 50%; background: rgba(122,199,76,0.15);
    border: 1px solid rgba(122,199,76,0.4); color: #7AC74C;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 800;
}

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.faq-list {
    display: flex; flex-direction: column; gap: 0.75rem;
    max-width: 760px;
}
.faq-item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--surface);
    overflow: hidden; transition: all 0.2s;
}
.faq-item.open {
    border-color: rgba(247,208,44,0.3);
    background: rgba(247,208,44,0.02);
}
.faq-q {
    padding: 1.15rem 1.35rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 0.96rem; font-weight: 600;
    color: var(--text); gap: 1rem;
    font-family: 'Exo 2', sans-serif; user-select: none;
    transition: background 0.2s;
}
.faq-q:hover { background: var(--surface-2); }
.faq-chevron {
    width: 22px; height: 22px; flex-shrink: 0;
    border-radius: 50%; background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; font-size: 0.65rem;
    color: var(--text-2);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(247,208,44,0.12); border-color: rgba(247,208,44,0.35);
    color: var(--yellow);
}
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 0.9rem; color: var(--text-2); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 520px; }
.faq-a-inner { padding: 0 1.35rem 1.35rem; }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
footer {
    position: relative; z-index: 1;
    padding: 3rem clamp(1.25rem, 5vw, 4rem);
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.25rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-brand .pokeball { width: 28px; height: 28px; }
.footer-brand .pokeball::after { width: 8px; height: 8px; border-width: 2px; }
.footer-copy { font-size: 0.82rem; color: var(--text-3); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-link {
    font-size: 0.82rem; color: var(--text-3);
    text-decoration: none; transition: color 0.2s;
}
.footer-link:hover { color: var(--yellow); }

/* ─── CLICK RIPPLE ────────────────────────────────────────────────── */
.ripple { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,0.5); transform: scale(0); animation: ripple-anim 0.65s ease-out; }
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }
.btn-hero-primary, .btn-download-apk, .btn-nav-apk, .btn-form-submit, .mobile-dl-btn { position: relative; overflow: hidden; }

/* ─── DESIGN POLISH (extra) ───────────────────────────────────────── */
/* Subtle film-grain texture overlay */
body::after {
    content: ''; position: fixed; inset: 0; z-index: 1;
    pointer-events: none; opacity: 0.025; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
/* Feature card 3D tilt feel */
.feat-card { transform-style: preserve-3d; }
.feat-card:hover { transform: translateY(-6px) perspective(900px) rotateX(2deg); }
/* Animated gradient border for hero-primary on focus */
.btn-hero-primary:focus-visible, .btn-download-apk:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }


/* ─── MOBILE STICKY DOWNLOAD BAR ──────────────────────────────────── */
.mobile-dl-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 800; padding: 0.75rem 1.25rem;
    background: rgba(11,12,26,0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
}
.mobile-dl-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.9rem; border-radius: 100px;
    background: linear-gradient(135deg, var(--yellow), #FF8C00);
    color: #111; font-size: 0.95rem; font-weight: 800;
    text-decoration: none; font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.02em; box-shadow: 0 0 24px rgba(247,208,44,0.4);
}

/* ─── MODALS ──────────────────────────────────────────────────────── */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(7,8,15,0.88);
    backdrop-filter: blur(10px);
    align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-card {
    background: var(--bg-2); border: 1px solid var(--border-bright);
    border-radius: var(--radius); padding: 2rem;
    width: 100%; max-width: 410px;
    box-shadow: 0 36px 90px rgba(0,0,0,0.55), 0 0 60px rgba(247,208,44,0.06);
    position: relative; animation: modal-in 0.25s ease;
}
@keyframes modal-in {
    from { opacity: 0; transform: scale(0.95) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--surface-2); border: 1px solid var(--border);
    color: var(--text-2); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; line-height: 1; transition: all 0.2s;
}
.modal-close:hover { background: var(--surface); color: var(--text); transform: rotate(90deg); }
.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}
.modal-sub { font-size: 0.86rem; color: var(--text-3); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
    display: block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-3); margin-bottom: 0.4rem;
    font-family: 'Exo 2', sans-serif;
}
.form-input {
    width: 100%; padding: 0.75rem 1rem;
    border-radius: var(--radius-sm); background: var(--bg);
    border: 1px solid var(--border); color: var(--text);
    font-size: 0.92rem; font-family: 'Inter', sans-serif;
    transition: all 0.2s; outline: none;
}
.form-input:focus {
    border-color: rgba(247,208,44,0.5);
    box-shadow: 0 0 0 3px rgba(247,208,44,0.1);
}
.form-error {
    padding: 0.65rem 0.9rem; border-radius: var(--radius-xs);
    background: rgba(204,0,0,0.1); border: 1px solid rgba(204,0,0,0.3);
    color: #FF8080; font-size: 0.82rem; margin-bottom: 1rem;
}
.form-success {
    padding: 0.65rem 0.9rem; border-radius: var(--radius-xs);
    background: rgba(61,220,151,0.1); border: 1px solid rgba(61,220,151,0.3);
    color: #5EE5A8; font-size: 0.82rem; margin-bottom: 1rem;
}
.btn-form-submit {
    width: 100%; padding: 0.85rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--yellow), #FF8C00);
    color: #111; font-size: 0.96rem; font-weight: 800;
    border: none; cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.03em; transition: all 0.2s;
    margin-top: 0.5rem;
}
.btn-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(247,208,44,0.3);
    filter: brightness(1.05);
}
.modal-switch {
    text-align: center; margin-top: 1.25rem;
    font-size: 0.84rem; color: var(--text-3);
}
.modal-switch a { color: var(--yellow); text-decoration: none; font-weight: 600; cursor: pointer; }
.modal-switch a:hover { text-decoration: underline; }
.strength-bar {
    height: 4px; border-radius: 2px;
    background: var(--border); margin-top: 0.45rem; overflow: hidden;
}
.strength-fill { height: 100%; width: 0; border-radius: 2px; transition: width 0.3s, background 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .seo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-showcase { order: -1; height: 380px; }
    .hero-showcase .showcase-ring-3 { width: 320px; height: 320px; }
    .hero-showcase .showcase-ring-2 { width: 260px; height: 260px; }
    .hero-showcase .showcase-ring-1 { width: 200px; height: 200px; }
    .hero-showcase .showcase-poke img { width: 190px; height: 190px; }
    .hero-showcase .showcase-orb { width: 260px; height: 260px; }
    .hero-cta, .hero-stats, .hero-badge { justify-content: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .btn-discord-hero { margin-left: auto; margin-right: auto; }
    .hero-trust { margin-left: auto; margin-right: auto; text-align: left; }
    .meet-inner { grid-template-columns: 1fr; }
    .meet-thumbs { flex-direction: row; overflow-x: auto; max-height: none; padding-bottom: 0.5rem; }
    .meet-thumb { min-width: 200px; }
    .gameplay-showcase { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .gameplay-info { align-items: center; }
    .gameplay-desc { margin-left: auto; margin-right: auto; }
    .gameplay-tag { align-self: center; }
    .gameplay-nav { justify-content: center; }
    .mobile-dl-bar { display: block; }
    .btn-nav-apk, .btn-nav-discord { display: none; }
    .seo-grid { grid-template-columns: 1fr; }
    .seo-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body { padding-bottom: 80px; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .nav-logo-text { display: none; }
    .hero-stats { gap: 1.5rem; }
    .stat-value { font-size: 1.6rem; }
    .section { padding: 4rem 1.25rem; }
    .btn-download-apk { padding: 1rem 2rem; font-size: 1rem; }
}
