/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg-base:      #050d1a;
  --bg-card:      #0a1628;
  --bg-glass:     rgba(10,22,40,0.72);
  --accent:       #00c6ff;
  --accent2:      #0072ff;
  --accent3:      #7b2ff7;
  --gold:         #f5c542;
  --text-primary: #e8f0fe;
  --text-muted:   #6b82a8;
  --border:       rgba(0,198,255,0.18);
  --radius:       14px;
  --nav-h:        68px;
  --shadow-glow:  0 0 40px rgba(0,198,255,0.18);
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
}
[data-theme="light"] {
  --bg-base:      #e8f0fe;
  --bg-card:      #ffffff;
  --bg-glass:     rgba(255,255,255,0.8);
  --text-primary: #0a1628;
  --text-muted:   #4a5568;
  --border:       rgba(0,114,255,0.2);
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* ─── LOADING SCREEN ───────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-base);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.loader-bar { width: 200px; height: 3px; background: var(--border); border-radius: 99px; overflow: hidden; }
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 99px;
  animation: fill-bar 1.8s ease forwards;
}
@keyframes fill-bar { from { width: 0; } to { width: 100%; } }

/* ─── CURSOR ───────────────────────────────────── */
.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 8888;
  transition: transform 0.15s ease;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,198,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 8887;
  transition: transform 0.4s ease, width 0.3s ease, height 0.3s ease;
}
@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* ─── NAVBAR ───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  padding: 0 5%;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none; letter-spacing: 1px; margin-right: auto;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--text-primary); text-decoration: none;
  padding: 8px 16px; border-radius: 8px;
  font-weight: 600; font-size: .9rem; letter-spacing: .3px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: rgba(0,198,255,0.1); color: var(--accent); }
.btn-nav-buy {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; border: none; border-radius: 8px;
  padding: 9px 22px; font-weight: 700; font-size: .9rem;
  cursor: pointer; letter-spacing: .3px;
  box-shadow: 0 4px 20px rgba(0,114,255,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-nav-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,114,255,0.5); }
.mobile-buy-btn {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; border: none; border-radius: 8px;
  padding: 13px 16px; font-weight: 700; font-size: .95rem;
  cursor: pointer; text-align: left; width: 100%;
  margin-top: 8px;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
/* theme-btn removed */
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-glass); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 16px 5%;
  gap: 4px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-primary); text-decoration: none;
  padding: 12px 16px; border-radius: 8px;
  font-weight: 600; font-size: .95rem;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: rgba(0,198,255,0.1); color: var(--accent); }

/* ─── HERO ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: var(--nav-h) 5% 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,114,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(123,47,247,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #050d1a 0%, #060f1f 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,198,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,198,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-particles span {
  position: absolute; width: 2px; height: 2px;
  background: var(--accent); border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  animation: slide-up 0.8s ease 2.2s both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,198,255,0.1); border: 1px solid rgba(0,198,255,0.3);
  border-radius: 99px; padding: 6px 16px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1px;
  color: var(--accent); text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,198,255,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(0,198,255,0); }
}
.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-title .line-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  color: var(--text-muted); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; text-decoration: none; border: none; cursor: pointer;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,114,255,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,114,255,0.5); }
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
  background: transparent; color: var(--text-primary); cursor: pointer;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 1.5px solid var(--border);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--accent); background: rgba(0,198,255,0.08); transform: translateY(-2px); }
/* ─── HERO VISUAL ───────────────────────── */

.hero-visual{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:55%;
    height:100%;
    z-index:1;
    pointer-events:none;
}

/* CHARACTER BACKGROUND */
.hero-character{
    position:absolute;
    right:-120px;
    bottom:-10px;
    transform:translateY(-50%);
    width:1100px;
    opacity:.45;
    z-index:1;
            filter:
      drop-shadow(0 0 35px rgba(0,198,255,.25));

    animation:floatPlayer 4s ease-in-out infinite;
}

.hero-player{
    position:absolute;
    right:1px;
    bottom:0px;
    width:900px;
    z-index:5;
    transform: scaleX(-1);
}

/* GLOW */
.hero-visual::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    right:0;
    top:50%;
    transform:translateY(-50%);
    background:
      radial-gradient(circle,
      rgba(0,114,255,.2),
      transparent 70%);
}

/* ANIMATION */
@keyframes floatPlayer{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

@keyframes floatHero{
    0%,100%{
        transform:translateY(-50%);
    }
    50%{
        transform:translateY(calc(-50% - 10px));
    }
}
.hero-orb {
  width: min(520px, 50vw); height: min(520px, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(0,198,255,0.22) 0%, rgba(0,114,255,0.12) 50%, transparent 75%);
  border: 1px solid rgba(0,198,255,0.12);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-orb::before, .hero-orb::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,198,255,0.08);
  animation: spin linear infinite;
}
.hero-orb::before { inset: -30px; animation-duration: 20s; }
.hero-orb::after  { inset: -60px; animation-duration: 35s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float-hero { 0%,100% { transform: translateY(-50%) translateY(0); } 50% { transform: translateY(-50%) translateY(-18px); } }
.hero-icon-center { font-size: clamp(4rem, 8vw, 7rem); }
.hero-stats {
  position: absolute; bottom: 48px; left: 5%;
  display: flex; gap: 32px; z-index: 2;
  animation: slide-up 0.8s ease 2.5s both;
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem; font-weight: 700; color: var(--accent);
  display: block;
}
.hero-stat-lbl { color: var(--text-muted); font-size: .75rem; letter-spacing: .5px; text-transform: uppercase; }

/* ─── SECTION BASE ─────────────────────────────── */
section { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); background: rgba(0,198,255,0.1);
  border: 1px solid rgba(0,198,255,0.25);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 14px;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.accent-word {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── FEATURES ─────────────────────────────────── */
#features { background: linear-gradient(180deg, var(--bg-base) 0%, #060f20 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 350px)); gap: 24px;justify-content: center; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); border-color: rgba(0,198,255,0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0,198,255,0.15), rgba(0,114,255,0.1));
  border: 1px solid rgba(0,198,255,0.2);
}
.feature-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.feature-card .card-glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,255,0.06), transparent 70%);
  pointer-events: none;
}

/* ─── GAMES / SERVICES ─────────────────────────── */
#games { background: #060f20; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer; position: relative;
}
.game-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,198,255,0.1); }
.game-thumb {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.game-card:nth-child(1) .game-thumb { background: linear-gradient(135deg, #1a0533, #6b1aa0); }
.game-card:nth-child(2) .game-thumb { background: linear-gradient(135deg, #001833, #0062cc); }
.game-card:nth-child(3) .game-thumb { background: linear-gradient(135deg, #1a1200, #b38000); }
.game-card:nth-child(4) .game-thumb { background: linear-gradient(135deg, #001a0c, #006b3c); }
.game-card:nth-child(5) .game-thumb { background: linear-gradient(135deg, #1a0000, #cc1a00); }
.game-card:nth-child(6) .game-thumb { background: linear-gradient(135deg, #00101a, #005c8a); }
.game-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
}
.game-badge {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; font-size: .65rem; font-weight: 800;
  padding: 3px 8px; border-radius: 5px; letter-spacing: .5px; text-transform: uppercase;
}
.game-info { padding: 16px 18px 18px; }
.game-name { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.game-meta { display: flex; justify-content: space-between; align-items: center; }
.game-type { color: var(--text-muted); font-size: .78rem; }
.game-price { color: var(--accent); font-weight: 700; font-size: .85rem; }

/* ─── STATS ─────────────────────────────────────── */
#stats {
  padding: 80px 5%;
  background: linear-gradient(135deg, rgba(0,114,255,0.08) 0%, rgba(123,47,247,0.06) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; line-height: 1; margin-bottom: 8px;
}
.stat-lbl { color: var(--text-muted); font-size: .88rem; letter-spacing: .5px; }
.stat-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }

/* ─── TESTIMONIALS ─────────────────────────────── */
#testimonials { background: var(--bg-base); }
.testi-track-wrap { overflow: hidden; position: relative; }
.testi-track-wrap::before, .testi-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testi-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-base), transparent); }
.testi-track-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg-base), transparent); }
.testi-track {
  display: flex; gap: 20px;
  animation: scroll-testi 38s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scroll-testi { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card {
  min-width: 300px; max-width: 320px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  flex-shrink: 0; position: relative;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: rgba(0,198,255,0.3); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; font-family: 'Rajdhani', sans-serif;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #1a0533, #6b1aa0); }
.av2 { background: linear-gradient(135deg, #001833, #0062cc); }
.av3 { background: linear-gradient(135deg, #1a1200, #b38000); }
.av4 { background: linear-gradient(135deg, #001a0c, #006b3c); }
.av5 { background: linear-gradient(135deg, #1a0000, #cc1a00); }
.av6 { background: linear-gradient(135deg, #00101a, #005c8a); }
.av7 { background: linear-gradient(135deg, #1a0033, #7b2ff7); }
.av8 { background: linear-gradient(135deg, #001a1a, #007a7a); }
.testi-name { font-weight: 700; font-size: .95rem; }
.testi-role { color: var(--text-muted); font-size: .75rem; }

/* ─── PAYMENT ──────────────────────────────────── */
#payment { background: #060f20; padding: 80px 5%; }
.payment-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 20px; margin-top: 40px;
}
.payment-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 28px;
  font-family: 'Rajdhani', sans-serif; font-size: 1.25rem; font-weight: 700;
  letter-spacing: 1px; cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; align-items: center; gap: 10px;
}
/* PAYMENT IMAGE */

.payment-item{
    width:220px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:rgba(10,20,40,.7);

    border:1px solid rgba(0,198,255,.18);

    border-radius:18px;

    transition:.3s ease;

    overflow:hidden;

    backdrop-filter:blur(10px);
}

.payment-item img{
    width:140px;
    object-fit:contain;

    transition:.3s ease;
}

/* HOVER */

.payment-item:hover{
    transform:translateY(-6px);

    border-color:#00c6ff;

    box-shadow:
      0 0 25px rgba(0,198,255,.25);
}

.payment-item:hover img{
    transform:scale(1.05);
}

/* ─── FAQ ───────────────────────────────────────── */
#faq { background: var(--bg-base); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(0,198,255,0.3); }
.faq-q {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: .95rem; gap: 12px;
  transition: color var(--transition);
  user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron { color: var(--text-muted); transition: transform var(--transition); font-size: 1.1rem; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted); font-size: .9rem; line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ─── CONTACT ──────────────────────────────────── */
#contact { background: #060f20; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px;
  text-decoration: none; color: var(--text-primary);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-method:hover { border-color: rgba(0,198,255,0.3); transform: translateX(4px); }
.contact-method-icon img{
    width:24px;
    height:24px;

    object-fit:contain;

    display:block;
}.contact-method-icon img[src*="whatsapp"]{
    width:50px;
    height:50px;
}
.contact-method-info span { display: block; }
.contact-method-info .cm-lbl { font-size: .75rem; color: var(--text-muted); }
.contact-method-info .cm-val { font-weight: 700; font-size: .9rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-muted); letter-spacing: .3px; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  color: var(--text-primary); font-family: 'Nunito', sans-serif;
  font-size: .95rem; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,198,255,0.1);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; border: none; cursor: pointer;
  padding: 14px 32px; border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,114,255,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,114,255,0.4); }
.form-success {
  display: none; background: rgba(0,198,100,0.1); border: 1px solid rgba(0,198,100,0.3);
  border-radius: 10px; padding: 14px 18px; color: #0dc47a;
  font-weight: 600; font-size: .95rem; text-align: center;
}

/* ─── FOOTER ───────────────────────────────────── */
footer {
  background: #020810; border-top: 1px solid var(--border);
  padding: 60px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name {
  font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px; display: block;
}
.footer-desc { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); text-decoration: none; font-size: .95rem;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.footer-social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--text-muted); text-decoration: none; font-size: .88rem;
  transition: color var(--transition); display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a::before { content: '→'; font-size: .7rem; opacity: 0; transition: opacity var(--transition); }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: var(--text-muted); font-size: .82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-muted); text-decoration: none; font-size: .82rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* ─── FLOAT WA BUTTON ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.15); box-shadow: 0 16px 48px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ─── SCROLL REVEAL ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── ANIMATIONS ───────────────────────────────── */
@keyframes slide-up   { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:none; } }
@keyframes slide-left { from { opacity:0; transform:translateX(60px) translateY(-50%); } to { opacity:1; transform:translateX(0) translateY(-50%); } }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
/* ─── NAV TOGGLE ACTIVE STATE ───────────────────── */
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   CATALOG MODAL
═══════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%; max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,198,255,0.1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-box::-webkit-scrollbar { width: 5px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.modal-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  flex: 1;
}
.modal-close {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 8px; width: 36px; height: 36px;
  cursor: pointer; color: var(--text-muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,80,80,0.15); color: #ff5050; border-color: rgba(255,80,80,0.3); }
.modal-back {
  background: rgba(0,198,255,0.08); border: 1px solid rgba(0,198,255,0.2);
  border-radius: 8px; padding: 7px 14px;
  cursor: pointer; color: var(--accent); font-size: .85rem; font-weight: 700;
  transition: background var(--transition);
  flex-shrink: 0;
}
.modal-back:hover { background: rgba(0,198,255,0.15); }
.modal-sub { color: var(--text-muted); font-size: .88rem; margin-bottom: 20px; }

/* Category tabs */
.cat-tabs {
  display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap;
}
.cat-tab {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 18px; cursor: pointer;
  color: var(--text-muted); font-size: .85rem; font-weight: 600;
  transition: all var(--transition);
}
.cat-tab.active,
.cat-tab:hover {
  background: rgba(0,198,255,0.12); border-color: rgba(0,198,255,0.35);
  color: var(--accent);
}

/* Game modal grid */
.games-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.game-modal-card {
  background: var(--bg-base); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.game-modal-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,198,255,0.1);
  border-color: rgba(0,198,255,0.3);
}
.gmc-thumb {
  height: 100px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gmc-emoji { font-size: 2.4rem; }
.gmc-badge {
  position: absolute; top: 8px; right: 8px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; font-size: .6rem; font-weight: 800;
  padding: 2px 7px; border-radius: 4px; letter-spacing: .5px; text-transform: uppercase;
}
.gmc-info { padding: 10px 12px 12px; }
.gmc-name { font-family: 'Rajdhani', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.gmc-type { color: var(--text-muted); font-size: .72rem; }

/* Item cards grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.item-card {
  background: var(--bg-base); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 16px 14px;
  cursor: pointer; text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.item-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0,198,255,0.15);
}
.item-name { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.item-bonus { color: var(--gold); font-size: .75rem; font-weight: 600; margin-bottom: 6px; }
.item-price {
  color: var(--accent); font-weight: 800; font-size: .9rem;
  background: rgba(0,198,255,0.08); border-radius: 6px;
  padding: 4px 8px; display: inline-block; margin-top: 6px;
}

/* Order summary */
.order-summary {
  background: rgba(0,198,255,0.06); border: 1px solid rgba(0,198,255,0.2);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 22px;
}
.os-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
}
.os-row + .os-row { border-top: 1px solid rgba(255,255,255,0.05); }
.os-label { color: var(--text-muted); font-size: .85rem; }
.os-value { font-weight: 700; font-size: .9rem; }
.os-total .os-label { color: var(--text-primary); font-weight: 700; }
.os-total .os-value { color: var(--accent); font-size: 1.1rem; }
.bonus-txt { color: var(--gold); }

/* Transaction form */
.tx-form { display: flex; flex-direction: column; gap: 16px; }

/* Payment method grid */
.payment-method-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px;
}
.pm-option {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-base); border: 1.5px solid var(--border);
  border-radius: 9px; padding: 10px 14px; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-weight: 600; font-size: .88rem;
}
.pm-option:has(input:checked) {
  border-color: var(--accent); background: rgba(0,198,255,0.1); color: var(--accent);
}
.pm-option input { accent-color: var(--accent); }

.full-width { width: 100%; }

/* Success step */
.success-body { text-align: center; padding: 20px 0 8px; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.success-body h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 10px;
}
.success-body p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; margin-bottom: 8px; }
.success-order-id {
  display: inline-block; background: rgba(0,198,255,0.1); border: 1px solid rgba(0,198,255,0.3);
  border-radius: 8px; padding: 8px 20px; font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--accent);
  letter-spacing: 1px; margin: 12px 0;
}
.success-note { font-size: .85rem !important; color: var(--text-muted); }

/* ─── RESPONSIVE IMPROVEMENTS ───────────────────── */
/* Ensure hero images scale well */
@media (max-width: 1200px) {
  .hero-character { width: 800px; right: -80px; }
  .hero-player { width: 650px; }
}
@media (max-width: 900px) {
  .hero-character { width: 600px; right: -60px; opacity: .3; }
  .hero-player { width: 480px; }
}
@media (max-width: 768px) {
  .hero-character { width: 400px; right: -40px; opacity: .2; }
  .hero-player { width: 320px; right: 0; }
  .hero-stats { gap: 20px; }
  .modal-box { padding: 18px 14px; border-radius: 16px; }
  .modal-header h2 { font-size: 1.2rem; }
  .games-modal-grid { grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); }
  .items-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); }
  .payment-method-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-character { width: 280px; opacity: .15; }
  .hero-player { width: 240px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .games-modal-grid { grid-template-columns: repeat(3, 1fr); }
  .items-grid { grid-template-columns: repeat(2,1fr); }
  .modal-overlay { padding: 8px; }
  .modal-box { max-height: 96vh; }
}

