/* ═══════════════════════════════════════════════════════════════════════════
   WorldX CnR — Shared Stylesheet
   Covers: landing page (index.html), VIP store (store.html),
           success.html, cancel.html
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

:root {
    --bg:           #04060a;
    --card:         rgba(8, 12, 22, 0.92);
    --border:       rgba(255, 255, 255, 0.07);
    --orange:       #f59e0b;
    --orange-light: #fbbf24;
    --blue:         #3b82f6;
    --blue-light:   #60a5fa;
    --red:          #ef4444;
    --text:         #ffffff;
    --muted:        rgba(255, 255, 255, 0.60);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* ── Shared background overlay (store / success / cancel pages) ─────────── */
.bg-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 153, 0, 0.09), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.10), transparent 30%),
        linear-gradient(135deg, rgba(6, 10, 18, 0.97), rgba(10, 14, 24, 0.99));
    z-index: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
    background: rgba(4, 6, 10, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 1;
}
.nav-brand img {
    height: 58px;
    width: auto;
    object-fit: contain;
}
.nav-brand-text {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
}
.nav-brand-text span { color: var(--orange); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0 40px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.30);
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 24px 90px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 85% 55% at 50% 45%, rgba(245, 158, 11, 0.09) 0%, transparent 60%),
        radial-gradient(circle at 12% 55%, rgba(59, 130, 246, 0.16) 0%, transparent 38%),
        radial-gradient(circle at 88% 55%, rgba(239, 68, 68, 0.11) 0%, transparent 38%),
        linear-gradient(180deg, #060810 0%, #04060a 100%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 75% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 50%, black, transparent);
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: orbFloat 9s ease-in-out infinite;
}
.orb-1 { width: 420px; height: 420px; background: rgba(59,130,246,0.15);  top: 5%;   left: -8%;  animation-delay: 0s; }
.orb-2 { width: 520px; height: 520px; background: rgba(245,158,11,0.10);  top: -12%; right: 2%;  animation-delay: -3.5s; }
.orb-3 { width: 320px; height: 320px; background: rgba(239,68,68,0.11);   bottom: 8%; right: 8%; animation-delay: -6s; }
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-28px) scale(1.05); }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
}
.hero-logo {
    width: 300px;
    max-width: 76vw;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 48px rgba(245, 158, 11, 0.22));
    animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(245,158,11,0.20)); }
    50%       { filter: drop-shadow(0 0 60px rgba(245,158,11,0.35)); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.28);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.45; transform: scale(0.65); }
}
.hero-title {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: clamp(44px, 7.5vw, 90px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-title .t-cops { color: #93c5fd; }
.hero-title .t-amp  { color: rgba(255, 255, 255, 0.30); font-size: 0.75em; }
.hero-title .t-robs { color: #fbbf24; }
.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 40px;
}
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scrollBob 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes scrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHARED BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.22s;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.36);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.50);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 34px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s;
    cursor: pointer;
}
.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 28px;
    border-radius: 12px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.45);
    color: #a5aaff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.22s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-discord svg { flex-shrink: 0; }
.btn-discord:hover {
    background: rgba(88, 101, 242, 0.28);
    border-color: rgba(88, 101, 242, 0.75);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.30);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — STATS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.stats-bar {
    background: rgba(6, 9, 18, 0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item { display: flex; align-items: center; gap: 14px; }
.stat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.stat-icon.blue   { background: rgba(59,130,246,0.14); }
.stat-icon.orange { background: rgba(245,158,11,0.14); }
.stat-icon.green  { background: rgba(34,197,94,0.14);  }
.stat-icon.red    { background: rgba(239,68,68,0.14);  }
.stat-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 2px;
}
.stat-value { font-size: 17px; font-weight: 800; color: #fff; line-height: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — SECTION BASE
   ═══════════════════════════════════════════════════════════════════════════ */
.section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700; letter-spacing: 0.02em;
    line-height: 1.1; margin-bottom: 16px;
}
.section-desc {
    font-size: 17px; color: var(--muted);
    line-height: 1.7; max-width: 580px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — FEATURES GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feature-card::before {
    content: '';
    position: absolute; inset: 0; border-radius: 20px;
    opacity: 0; transition: opacity 0.3s;
    background: radial-gradient(circle at 50% 0%, var(--glow, rgba(245,158,11,0.07)), transparent 65%);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.feature-card:hover::before { opacity: 1; }
.feature-card.fc-police   { --glow: rgba(59,130,246,0.10);  }
.feature-card.fc-criminal { --glow: rgba(239,68,68,0.10);   }
.feature-card.fc-jobs     { --glow: rgba(34,197,94,0.10);   }
.feature-card.fc-vehicles { --glow: rgba(245,158,11,0.10);  }
.feature-card.fc-vip      { --glow: rgba(251,191,36,0.12);  }
.feature-card.fc-economy  { --glow: rgba(168,85,247,0.10);  }
.feature-card:hover.fc-police   { border-color: rgba(59,130,246,0.28); }
.feature-card:hover.fc-criminal { border-color: rgba(239,68,68,0.28); }
.feature-card:hover.fc-jobs     { border-color: rgba(34,197,94,0.28); }
.feature-card:hover.fc-vehicles { border-color: rgba(245,158,11,0.28); }
.feature-card:hover.fc-vip      { border-color: rgba(251,191,36,0.35); }
.feature-card:hover.fc-economy  { border-color: rgba(168,85,247,0.28); }
.feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 20px;
}
.fi-blue   { background: rgba(59,130,246,0.14); }
.fi-red    { background: rgba(239,68,68,0.14);  }
.fi-green  { background: rgba(34,197,94,0.14);  }
.fi-orange { background: rgba(245,158,11,0.14); }
.fi-gold   { background: rgba(251,191,36,0.14); }
.fi-purple { background: rgba(168,85,247,0.14); }
.feature-title {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 22px; font-weight: 700;
    letter-spacing: 0.03em; margin-bottom: 10px;
}
.feature-desc { font-size: 14px; line-height: 1.68; color: var(--muted); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tag {
    display: inline-block; padding: 3px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}
.tg-blue   { background: rgba(59,130,246,0.14);  color: #93c5fd; }
.tg-red    { background: rgba(239,68,68,0.14);   color: #fca5a5; }
.tg-green  { background: rgba(34,197,94,0.14);   color: #86efac; }
.tg-orange { background: rgba(245,158,11,0.14);  color: #fcd34d; }
.tg-gold   { background: rgba(251,191,36,0.14);  color: #fde68a; }
.tg-purple { background: rgba(168,85,247,0.14);  color: #d8b4fe; }

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — DIVIDER
   ═══════════════════════════════════════════════════════════════════════════ */
.full-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — HOW TO PLAY
   ═══════════════════════════════════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.step-card {
    padding: 28px 22px; border-radius: 20px;
    background: var(--card); border: 1px solid var(--border);
    text-align: center; position: relative;
}
.step-card:not(:last-child)::after {
    content: '→'; position: absolute;
    right: -13px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.14); font-size: 18px; z-index: 2;
}
.step-number {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.07));
    border: 1px solid rgba(245,158,11,0.22);
    color: var(--orange); font-size: 20px; font-weight: 900;
    font-family: 'Rajdhani', sans-serif;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.step-title {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 19px; font-weight: 700; margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.step-desc a { color: #93c5fd; text-decoration: none; }
.step-desc a:hover { text-decoration: underline; }
.server-address-box { margin-top: 36px; text-align: center; }
.server-address-box .inner {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 14px 30px; border-radius: 14px;
    background: rgba(59,130,246,0.07);
    border: 1px solid rgba(59,130,246,0.18);
}
.server-address-label {
    font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: #93c5fd;
}
.server-address-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.10); }
.server-address-value {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 22px; font-weight: 700; letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — VIP BAND
   ═══════════════════════════════════════════════════════════════════════════ */
.vip-band {
    background: rgba(6, 9, 18, 0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 90px 48px;
    position: relative;
    overflow: hidden;
}
.vip-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 65% 100% at 50% 50%, rgba(245,158,11,0.055), transparent);
    pointer-events: none;
}
.vip-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: center;
}
.vip-text .section-header { text-align: left; margin-bottom: 30px; }
.vip-text .section-desc   { max-width: none; text-align: left; }
.vip-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.vip-benefit {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 16px; border-radius: 12px;
    background: rgba(245,158,11,0.05);
    border: 1px solid rgba(245,158,11,0.11);
    font-size: 14px; font-weight: 500;
}
.vb-icon { font-size: 19px; flex-shrink: 0; }
.vip-packages-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vip-pkg {
    padding: 22px 18px; border-radius: 16px;
    background: var(--card); border: 1px solid var(--border);
    text-align: center; position: relative;
    transition: border-color 0.2s, transform 0.2s; cursor: default;
}
.vip-pkg:hover { border-color: rgba(245,158,11,0.30); transform: translateY(-3px); }
.vip-pkg.featured {
    border-color: rgba(245,158,11,0.38);
    background: rgba(245,158,11,0.055);
}
.popular-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0a0a0a; font-size: 9px; font-weight: 900;
    letter-spacing: 0.10em; padding: 3px 12px;
    border-radius: 999px; white-space: nowrap;
}
.vip-pkg-hours {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 30px; font-weight: 700;
    color: #fbbf24; line-height: 1; margin-bottom: 4px;
}
.vip-pkg-label { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.vip-pkg-price { font-size: 22px; font-weight: 900; color: #fff; }
.vip-note { margin-top: 14px; font-size: 11px; color: rgba(255,255,255,0.26); text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    background: rgba(3, 4, 8, 0.99);
    border-top: 1px solid var(--border);
    padding: 38px 48px;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand img { height: 34px; width: auto; object-fit: contain; }
.footer-brand-text {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.60);
}
.footer-brand-text span { color: var(--orange); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
    font-size: 13px; color: rgba(255,255,255,0.38);
    text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.24); }

/* ═══════════════════════════════════════════════════════════════════════════
   SOCIAL ICONS — NAVBAR & FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.nav-socials {
    display: flex; align-items: center; gap: 6px; margin-right: 4px;
}
.social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 9px;
    color: rgba(255,255,255,0.45);
    transition: color 0.18s, background 0.18s;
    text-decoration: none;
}
.social-icon svg { width: 17px; height: 17px; flex-shrink: 0; }
.social-icon:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* Footer variant — shows icon + label side by side */
.footer-socials { display: flex; align-items: center; gap: 8px; }
.social-icon-footer {
    width: auto; height: 32px; padding: 0 12px; gap: 7px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.40);
    background: transparent;
}
.social-icon-footer svg { width: 15px; height: 15px; }
.social-icon-footer span { line-height: 1; }
.social-icon-footer:hover {
    color: #fff; background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE — SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════
   STORE PAGE — NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.store-nav {
    position: sticky; top: 0; z-index: 100;
    height: 64px; display: flex; align-items: center;
    padding: 0 40px;
    background: rgba(4, 6, 10, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.store-nav-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex: 1;
}
.store-nav-brand img { height: 40px; width: auto; object-fit: contain; }
.store-nav-brand-text {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 20px; font-weight: 700; letter-spacing: 0.05em; color: #fff;
}
.store-nav-brand-text span { color: #f59e0b; }
.store-nav-back {
    display: inline-flex; align-items: center; gap: 7px;
    height: 36px; padding: 0 16px; border-radius: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.70); font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all 0.18s;
}
.store-nav-back:hover { background: rgba(255,255,255,0.10); color: #fff; }
.store-nav-back svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   STORE PAGE — CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */
.page-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}
.hero-block { text-align: center; margin-bottom: 44px; }
.hero-block .eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 12px;
}
.hero-block h1 {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; margin-bottom: 10px;
}
.hero-block h2 {
    font-size: 20px; font-weight: 700;
    color: #fbbf24; margin-bottom: 14px;
}
.hero-block p {
    font-size: 16px; color: rgba(255, 255, 255, 0.68);
    line-height: 1.6; max-width: 600px; margin: 0 auto;
}
.store-card {
    width: 100%; max-width: 980px; margin: 0 auto;
    padding: 34px; border-radius: 26px;
    background: rgba(14, 20, 32, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 22px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.03);
}
.card-top { margin-bottom: 24px; }
.card-top h3 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.card-top p { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.68); }
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block; font-size: 14px; font-weight: 700;
    margin-bottom: 8px; color: rgba(255,255,255,0.82);
}
.input-wrap input {
    width: 100%; height: 54px; padding: 0 16px;
    border-radius: 14px; border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05); color: #ffffff;
    font-size: 16px; outline: none; transition: 0.18s ease;
}
.input-wrap input::placeholder { color: rgba(255,255,255,0.36); }
.input-wrap input:focus {
    border-color: rgba(106,168,255,0.65);
    box-shadow: 0 0 0 3px rgba(47,143,255,0.12);
    background: rgba(255,255,255,0.07);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.package-card {
    border-radius: 18px; padding: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
.package-card h4 { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.package-card p {
    color: rgba(255,255,255,0.70); margin-bottom: 16px; line-height: 1.45;
}
.package-meta { font-size: 14px; color: #7fb7ff; margin-bottom: 16px; font-weight: 700; }
.package-price { font-size: 28px; font-weight: 900; color: #ffd24a; margin-bottom: 16px; }
.buy-btn, .back-btn {
    width: 100%; height: 54px; border: none; border-radius: 14px;
    background: linear-gradient(135deg, #ff9f1a, #ffbf47);
    color: #111827; font-size: 16px; font-weight: 900;
    cursor: pointer; transition: 0.18s ease;
    box-shadow: 0 12px 24px rgba(255,159,26,0.22);
}
.buy-btn:hover, .back-btn:hover {
    transform: translateY(-1px); filter: brightness(1.03);
}
.message { min-height: 24px; margin-top: 18px; font-size: 14px; font-weight: 700; }
.message.success { color: #7dff9e; }
.message.error   { color: #ff8d8d; }
.eyebrow {
    display: inline-block; font-size: 12px; font-weight: 800;
    letter-spacing: 0.18em; color: #7fb7ff; margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STORE PAGE — POLICY NOTE & POLICY SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.store-policy-note {
    margin-top: 22px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.6;
}
.store-policy-note a {
    color: rgba(255,255,255,0.55); text-decoration: underline;
    text-underline-offset: 3px; transition: color 0.18s;
}
.store-policy-note a:hover { color: rgba(255,255,255,0.85); }

.policy-section {
    width: 100%; max-width: 980px; margin: 36px auto 0;
    padding: 34px; border-radius: 26px;
    background: rgba(10, 14, 24, 0.85);
    border: 1px solid rgba(255,255,255,0.07);
}
.policy-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 800; color: rgba(255,255,255,0.90);
    margin-bottom: 4px;
}
.policy-title svg { color: rgba(255,255,255,0.35); flex-shrink: 0; }
.policy-updated {
    font-size: 11px; color: rgba(255,255,255,0.28);
    margin-bottom: 28px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.policy-body { display: flex; flex-direction: column; gap: 22px; }
.policy-block h3 {
    font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase; color: #7fb7ff;
    margin-bottom: 8px;
}
.policy-block p {
    font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.75;
}
.policy-block ul {
    margin: 8px 0 0 18px;
    display: flex; flex-direction: column; gap: 6px;
}
.policy-block ul li {
    font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65;
}
.policy-block a {
    color: rgba(255,255,255,0.65); text-decoration: underline;
    text-underline-offset: 3px; transition: color 0.18s;
}
.policy-block a:hover { color: #fff; }
.policy-discord-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 12px; padding: 10px 18px; border-radius: 10px;
    background: rgba(88, 101, 242, 0.18); border: 1px solid rgba(88,101,242,0.35);
    color: #9da8ff; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: all 0.18s;
}
.policy-discord-btn:hover {
    background: rgba(88,101,242,0.30); border-color: rgba(88,101,242,0.55);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLAY PAGE — RAGE:MP LAUNCH REDIRECT
   ═══════════════════════════════════════════════════════════════════════════ */
.play-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.play-card {
    width: 100%;
    max-width: 520px;
    padding: 52px 48px;
    border-radius: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow:
        0 0 80px rgba(0, 204, 102, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-align: center;
}

.play-logo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: contain;
    margin: 0 auto 28px;
    display: block;
    filter: drop-shadow(0 0 24px rgba(245, 158, 11, 0.28));
}

.play-card h1 {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.play-subtitle {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-bottom: 36px;
}

.play-subtitle span {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--muted);
    vertical-align: middle;
    margin: 0 8px 2px;
}

/* Status line */
.play-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 14px;
    background: rgba(0, 204, 102, 0.07);
    border: 1px solid rgba(0, 204, 102, 0.18);
    margin-bottom: 32px;
    font-size: 15px;
    font-weight: 600;
    color: #4ade80;
    min-height: 52px;
}

.play-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 204, 102, 0.18);
    border-top-color: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    animation: playSpin 0.75s linear infinite;
}

@keyframes playSpin {
    to { transform: rotate(360deg); }
}

.play-spinner.done {
    border-color: #4ade80;
    animation: none;
}

/* Divider */
.play-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 28px 0;
}

.play-fallback-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 16px;
}

.play-btn-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.play-btn-row .btn-primary {
    height: 46px;
    padding: 0 26px;
    font-size: 14px;
    border-radius: 12px;
}

.play-btn-row .btn-secondary {
    height: 46px;
    padding: 0 22px;
    font-size: 14px;
    border-radius: 12px;
}

/* Steps */
.play-step {
    display: flex;
    gap: 18px;
    text-align: left;
    margin-bottom: 4px;
}

.play-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.07));
    border: 1px solid rgba(245,158,11,0.26);
    color: var(--orange);
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.play-step-body {
    flex: 1;
    min-width: 0;
}

.play-step-title {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.play-step-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.play-step-desc strong {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.play-launch-btn {
    height: 46px !important;
    padding: 0 24px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
}

.play-no-ragemp {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.30);
}

.play-no-ragemp a {
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition: color 0.18s;
}

.play-no-ragemp a:hover {
    color: #fff;
}

/* Address + copy row */
.play-address-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-ip-box {
    flex: 1;
    padding: 11px 16px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.07);
    border: 1px solid rgba(59, 130, 246, 0.16);
    font-family: 'Rajdhani', 'Segoe UI', monospace;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #93c5fd;
}

.play-copy-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    flex-shrink: 0;
}

.play-copy-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* Blocked / help block */
.play-blocked {
    margin-top: 16px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.play-blocked-title {
    font-size: 14px;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 8px;
}

.play-blocked p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.play-browser-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.play-browser-tab {
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.play-browser-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.play-browser-tab.active {
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(59, 130, 246, 0.35);
    color: #93c5fd;
}

.play-tab-content {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.play-tab-content strong { color: rgba(255, 255, 255, 0.88); }
.play-tab-content em     { color: #93c5fd; font-style: normal; font-weight: 600; }
.play-tab-content.hidden { display: none; }

.play-download-link {
    display: inline-block;
    margin-top: 4px;
    color: #93c5fd;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}
.play-download-link:hover { text-decoration: underline; }

.play-did-it-work {
    margin-top: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.30);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
    transition: color 0.18s;
    display: none;
}
.play-did-it-work:hover { color: rgba(255, 255, 255, 0.65); }

.play-btn-secondary-row {
    display: flex;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUCCESS / CANCEL PAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.status-page {
    position: relative; z-index: 1; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; padding: 24px;
}
.status-card {
    width: 100%; max-width: 680px; padding: 34px;
    border-radius: 26px; background: rgba(14, 20, 32, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.09); text-align: center;
}
.status-card h1 { font-size: 42px; margin-bottom: 14px; }
.status-card p {
    font-size: 17px; color: rgba(255,255,255,0.78);
    margin-bottom: 22px; line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid    { grid-template-columns: repeat(2, 1fr); }
    .step-card:not(:last-child)::after { display: none; }
}
@media (max-width: 860px) {
    .packages-grid { grid-template-columns: 1fr; }
    .store-card    { padding: 24px; }
}
@media (max-width: 768px) {
    .nav           { padding: 0 20px; }
    .nav-links     { display: none; }
    .section, .vip-band { padding: 70px 20px; }
    .full-divider  { margin: 0 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid    { grid-template-columns: 1fr; }
    .vip-inner     { grid-template-columns: 1fr; gap: 44px; }
    .vip-text .section-header { text-align: center; }
    .vip-text .section-desc   { text-align: center; }
    .stats-inner   { padding: 0 20px; }
    .footer        { padding: 32px 20px; }
    .footer-inner  { flex-direction: column; text-align: center; }
    .footer-links  { flex-wrap: wrap; justify-content: center; }
    .store-nav     { padding: 0 16px; }
    .page-wrapper  { padding: 40px 16px 60px; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .vip-packages-preview  { grid-template-columns: 1fr; }
    .server-address-box .inner { flex-direction: column; gap: 8px; text-align: center; }
    .server-address-sep    { display: none; }
}
