/* ============================================================
   RAJAKAPAL88 TOPUP - Main Stylesheet
   Premium Gaming Top Up Store
   ============================================================ */

/* --- CSS Variables / Color System --- */
:root {
  /* Primary - Dark Navy */
  --primary-900: #060d1a;
  --primary-800: #0a1428;
  --primary-700: #0e1b36;
  --primary-600: #122444;
  --primary-500: #1a2f56;

  /* Secondary - Electric Blue */
  --secondary-600: #1e62ff;
  --secondary-500: #2b7fff;
  --secondary-400: #4d9bff;
  --secondary-300: #7db8ff;

  /* Accent - Cyan */
  --accent-500: #00d4ff;
  --accent-400: #22dfff;
  --accent-300: #5ee7ff;

  /* Purple Neon */
  --purple-500: #8b3dff;
  --purple-400: #a55eff;
  --purple-300: #c48fff;

  /* Gold */
  --gold-500: #ffc14d;
  --gold-400: #ffd27a;
  --gold-300: #ffe0a3;

  /* Success / Warning / Error */
  --success-500: #22c55e;
  --success-400: #4ade80;
  --warning-500: #f59e0b;
  --warning-400: #fbbf24;
  --error-500: #ef4444;
  --error-400: #f87171;

  /* Neutrals */
  --neutral-900: #0a0e18;
  --neutral-800: #121826;
  --neutral-700: #1c2438;
  --neutral-600: #2a3550;
  --neutral-500: #3d4a6a;
  --neutral-400: #5a6a8a;
  --neutral-300: #8a9ab8;
  --neutral-200: #c0ccdf;
  --neutral-100: #e3eaf5;
  --neutral-50: #f5f8fd;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0a1428 0%, #0e1b36 50%, #122444 100%);
  --gradient-blue: linear-gradient(135deg, #1e6eff 0%, #00d4ff 100%);
  --gradient-purple: linear-gradient(135deg, #8b3dff 0%, #2b7fff 100%);
  --gradient-gold: linear-gradient(135deg, #ffc14d 0%, #ffd27a 100%);
  --gradient-hero: linear-gradient(135deg, #060d1a 0%, #0a1428 40%, #0e1b36 100%);
  --gradient-glow: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, transparent 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 24px rgba(43, 127, 255, 0.3);
  --shadow-glow-cyan: 0 0 24px rgba(0, 212, 255, 0.3);
  --shadow-glow-purple: 0 0 24px rgba(139, 61, 255, 0.25);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);

  /* Spacing - 8px system */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --header-height: 72px;
  --container-max: 1280px;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-200);
  background: var(--primary-900);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; color: var(--neutral-50); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.6; }

.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-cyan { color: var(--accent-400); }
.text-gold { color: var(--gold-400); }
.text-muted { color: var(--neutral-400); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-2);
}
.section { padding: var(--space-7) 0; }
.section-sm { padding: var(--space-5) 0; }
.section-header { text-align: center; margin-bottom: var(--space-5); }
.section-header h2 { margin-bottom: var(--space-1); }
.section-header p { color: var(--neutral-400); font-size: 1.05rem; }
.section-title-accent {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-400);
  margin-bottom: var(--space-1);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(43, 127, 255, 0.5); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--neutral-100);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--accent-400); }
.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-900);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(255, 193, 77, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--accent-400);
  border: 1px solid var(--accent-400);
}
.btn-ghost:hover { background: rgba(0, 212, 255, 0.1); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-2);
  gap: var(--space-3);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--neutral-50);
  flex-shrink: 0;
}
.logo img { width: 36px; height: 36px; }
.logo span { background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-300);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--accent-400);
  background: rgba(0, 212, 255, 0.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
}
.header-search {
  position: relative;
}
.header-search input {
  width: 180px;
  padding: 9px 14px 9px 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--neutral-100);
  font-size: 0.85rem;
  transition: all var(--transition-base);
}
.header-search input:focus { outline: none; border-color: var(--accent-400); width: 220px; }
.header-search input::placeholder { color: var(--neutral-500); }
.header-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--neutral-500);
}
.btn-login {
  padding: 9px 20px;
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-base);
}
.btn-login:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow-blue); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--neutral-100);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* --- Mobile Nav --- */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--primary-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-2);
  transform: translateY(-150%);
  transition: transform var(--transition-base);
  z-index: 999;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.mobile-nav.active { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: var(--neutral-200);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(0, 212, 255, 0.08); color: var(--accent-400); }
.mobile-nav .mobile-search {
  width: 100%;
  margin-bottom: var(--space-1);
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--neutral-100);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-7);
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/assets/img/hero-bg.webp') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 61, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-400);
  margin-bottom: var(--space-2);
}
.hero h1 { margin-bottom: var(--space-2); }
.hero h1 .text-gradient { display: inline; }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--neutral-300);
  margin-bottom: var(--space-4);
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-400);
}
.hero-stat .stat-label { font-size: 0.85rem; color: var(--neutral-400); }

/* --- Search Bar (Homepage) --- */
.hero-search {
  position: relative;
  z-index: 1;
  margin-top: var(--space-4);
  max-width: 560px;
}
.hero-search-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 4px 4px 4px 20px;
  backdrop-filter: blur(20px);
  transition: all var(--transition-base);
}
.hero-search-wrapper:focus-within { border-color: var(--accent-400); box-shadow: var(--shadow-glow-cyan); }
.hero-search-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--neutral-100);
  padding: 12px 8px;
  font-size: 1rem;
}
.hero-search-wrapper input:focus { outline: none; }
.hero-search-wrapper input::placeholder { color: var(--neutral-500); }
.hero-search-wrapper button {
  padding: 12px 24px;
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}
.hero-search-wrapper button:hover { box-shadow: var(--shadow-glow-blue); }

/* --- Category Tabs --- */
.category-tabs {
  display: flex;
  gap: var(--space-1);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.category-tab {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: var(--neutral-300);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}
.category-tab:hover { border-color: var(--accent-400); color: var(--accent-400); }
.category-tab.active {
  background: var(--gradient-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow-blue);
}

/* --- Game Cards Grid --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.game-card {
  position: relative;
  background: var(--primary-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
}
.game-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.game-card:hover .game-card-img img { transform: scale(1.08); }
.game-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, var(--primary-700));
}
.game-card-body {
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.game-card-body h3 { font-size: 1.05rem; }
.game-card-body p { font-size: 0.82rem; color: var(--neutral-400); }
.game-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  background: rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-300);
  z-index: 1;
}
.game-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(43, 127, 255, 0.1);
  border: 1px solid rgba(43, 127, 255, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-400);
  transition: all var(--transition-base);
}
.game-card:hover .game-card-cta { background: var(--gradient-blue); color: #fff; border-color: transparent; }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-2) 0;
  font-size: 0.85rem;
  color: var(--neutral-400);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--neutral-300); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--accent-400); }
.breadcrumb span.sep { color: var(--neutral-600); }
.breadcrumb span.current { color: var(--accent-400); font-weight: 600; }

/* --- Game Top Up Page Layout --- */
.topup-page { padding: var(--space-3) 0 var(--space-7); }
.topup-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4);
  align-items: start;
}
.game-info-panel {
  position: sticky;
  top: calc(var(--header-height) + var(--space-2));
  background: var(--primary-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.game-info-banner {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.game-info-banner img { width: 100%; height: 100%; object-fit: cover; }
.game-info-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, var(--primary-700));
}
.game-info-content { padding: var(--space-3); }
.game-info-content h1 { font-size: 1.6rem; margin-bottom: 4px; }
.game-info-publisher {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--accent-400);
  margin-bottom: var(--space-2);
}
.game-info-desc { color: var(--neutral-300); font-size: 0.9rem; margin-bottom: var(--space-2); }
.game-info-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.game-info-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.game-info-meta-item span:first-child { color: var(--neutral-400); }
.game-info-meta-item span:last-child { color: var(--neutral-100); font-weight: 600; }

/* --- Top Up Form --- */
.topup-form {
  background: var(--primary-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.form-step { margin-bottom: var(--space-5); }
.form-step:last-child { margin-bottom: 0; }
.step-header {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--gradient-blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.step-header h3 { font-size: 1.1rem; margin: 0; }

/* --- Form Inputs --- */
.form-group { margin-bottom: var(--space-2); }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-200);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--neutral-100);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-400);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}
.form-input::placeholder { color: var(--neutral-500); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.form-hint {
  font-size: 0.78rem;
  color: var(--neutral-400);
  margin-top: 6px;
}
.form-hint a { color: var(--accent-400); text-decoration: underline; }
.form-error {
  font-size: 0.78rem;
  color: var(--error-400);
  margin-top: 6px;
  display: none;
}
.form-error.show { display: block; }

/* --- Nominal Grid --- */
.nominal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
}
.nominal-card {
  position: relative;
  padding: var(--space-2);
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}
.nominal-card:hover { border-color: rgba(0, 212, 255, 0.4); background: rgba(0, 212, 255, 0.05); }
.nominal-card.selected {
  border-color: var(--accent-400);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: var(--shadow-glow-cyan);
}
.nominal-card .nominal-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-50);
  margin-bottom: 4px;
}
.nominal-card .nominal-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-400);
}
.nominal-card .nominal-check {
  position: absolute;
  top: 6px; right: 6px;
  width: 20px; height: 20px;
  background: var(--accent-400);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--primary-900);
  font-size: 0.7rem;
  font-weight: 900;
}
.nominal-card.selected .nominal-check { display: flex; }
.nominal-card .nominal-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--gradient-gold);
  color: var(--primary-900);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 800;
  margin-top: 6px;
}

/* --- Payment Methods --- */
.payment-categories {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}
.payment-cat-tab {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-300);
  cursor: pointer;
  transition: all var(--transition-base);
}
.payment-cat-tab:hover { border-color: var(--accent-400); }
.payment-cat-tab.active {
  background: var(--gradient-blue);
  color: #fff;
  border-color: transparent;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
}
.payment-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--space-2);
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}
.payment-method-card:hover { border-color: rgba(0, 212, 255, 0.4); background: rgba(0, 212, 255, 0.05); }
.payment-method-card.selected {
  border-color: var(--accent-400);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: var(--shadow-glow-cyan);
}
.payment-logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}
.payment-name { font-size: 0.82rem; font-weight: 600; color: var(--neutral-200); }

/* Payment logo colors */
.pm-dana { background: #118ee9; }
.pm-ovo { background: #4c2a86; }
.pm-gopay { background: #00a35c; }
.pm-shopeepay { background: #ee4d2d; }
.pm-qris { background: #e63126; }
.pm-bca { background: #003d82; }
.pm-bri { background: #00529b; }
.pm-bni { background: #f37021; }
.pm-mandiri { background: #fdb913; color: #003779; }
.pm-bcava { background: #003d82; }
.pm-briva { background: #00529b; }
.pm-bniva { background: #f37021; }
.pm-mandiriva { background: #fdb913; color: #003779; }

/* --- Order Summary --- */
.order-summary {
  background: var(--primary-600);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-top: var(--space-4);
}
.order-summary h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.9rem;
}
.order-row span:first-child { color: var(--neutral-400); }
.order-row span:last-child { color: var(--neutral-100); font-weight: 600; text-align: right; }
.order-row.empty span:last-child { color: var(--neutral-500); font-style: italic; font-weight: 400; }
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  margin-top: var(--space-1);
  border-top: 2px solid rgba(0, 212, 255, 0.3);
}
.order-total span:first-child { font-size: 1rem; font-weight: 700; color: var(--neutral-200); }
.order-total span:last-child { font-size: 1.3rem; font-weight: 800; color: var(--accent-400); }

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.feature-card {
  padding: var(--space-3);
  background: var(--primary-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  color: var(--accent-400);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--neutral-400); }

/* --- Payment Methods Showcase --- */
.payment-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}
.payment-showcase-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.payment-showcase-item:hover { border-color: var(--accent-400); transform: translateY(-2px); }
.payment-showcase-item .payment-logo { width: 36px; height: 36px; font-size: 0.6rem; }
.payment-showcase-item span { font-weight: 600; color: var(--neutral-200); font-size: 0.9rem; }

/* --- Recent Transactions --- */
.transactions-table {
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.transaction-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr 1fr;
  gap: var(--space-2);
  padding: 14px var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  align-items: center;
}
.transaction-row:last-child { border-bottom: none; }
.transaction-row.header {
  background: rgba(255,255,255,0.02);
  font-weight: 700;
  color: var(--neutral-300);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tx-game { font-weight: 700; color: var(--neutral-100); }
.tx-product { color: var(--neutral-300); }
.tx-user { color: var(--neutral-400); font-family: monospace; }
.tx-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}
.tx-status.success { background: rgba(34, 197, 94, 0.15); color: var(--success-400); }
.tx-status.pending { background: rgba(245, 158, 11, 0.15); color: var(--warning-400); }
.tx-status.processing { background: rgba(43, 127, 255, 0.15); color: var(--secondary-400); }
.tx-status.failed { background: rgba(239, 68, 68, 0.15); color: var(--error-400); }
.tx-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.testimonial-card {
  padding: var(--space-3);
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.testimonial-card:hover { border-color: rgba(0, 212, 255, 0.2); box-shadow: var(--shadow-md); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--neutral-100); font-size: 0.95rem; }
.testimonial-meta { font-size: 0.78rem; color: var(--neutral-400); }
.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-1);
}
.testimonial-rating svg { width: 16px; height: 16px; color: var(--gold-400); }
.testimonial-text { font-size: 0.9rem; color: var(--neutral-300); line-height: 1.6; }
.testimonial-badge {
  display: inline-block;
  margin-top: var(--space-1);
  padding: 3px 10px;
  background: rgba(139, 61, 255, 0.15);
  border: 1px solid rgba(139, 61, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--purple-300);
  font-weight: 600;
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-1);
  overflow: hidden;
  transition: all var(--transition-base);
}
.faq-item:hover { border-color: rgba(0, 212, 255, 0.2); }
.faq-item.active { border-color: rgba(0, 212, 255, 0.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-100);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--accent-400); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-400);
  transition: transform var(--transition-base);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--space-3) var(--space-2);
  color: var(--neutral-300);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Promo Cards --- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.promo-card {
  position: relative;
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(0, 212, 255, 0.3); box-shadow: var(--shadow-lg); }
.promo-card-img {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
}
.promo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, var(--primary-700));
}
.promo-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  background: var(--gradient-gold);
  color: var(--primary-900);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 1;
}
.promo-card-body { padding: var(--space-3); }
.promo-card-period {
  font-size: 0.78rem;
  color: var(--accent-400);
  font-weight: 600;
  margin-bottom: 6px;
}
.promo-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.promo-card-body p { font-size: 0.88rem; color: var(--neutral-300); margin-bottom: var(--space-2); }

/* --- Popup --- */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: var(--space-2);
}
.promo-popup-overlay.active { display: flex; animation: fadeIn var(--transition-base); }
.promo-popup {
  position: relative;
  max-width: 560px;
  width: 100%;
  background: var(--primary-700);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: slideUp var(--transition-slow);
}
.promo-popup img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.promo-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
}
.promo-close:hover { background: var(--error-500); transform: rotate(90deg); }
.promo-content { padding: var(--space-3) var(--space-4) var(--space-4); text-align: center; }
.promo-content span {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient-gold);
  color: var(--primary-900);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: var(--space-1);
}
.promo-content h2 { font-size: 1.3rem; margin-bottom: var(--space-1); }
.promo-content p { color: var(--neutral-300); margin-bottom: var(--space-2); font-size: 0.92rem; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: var(--space-7) 0;
  background: var(--gradient-primary);
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: var(--space-2); }
.cta-section p { color: var(--neutral-300); font-size: 1.1rem; margin-bottom: var(--space-3); }

/* --- Steps (Cara Top Up) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.step-card {
  position: relative;
  padding: var(--space-3);
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}
.step-card:hover { border-color: rgba(0, 212, 255, 0.3); transform: translateY(-4px); }
.step-card-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow-glow-blue);
}
.step-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-md);
  margin: var(--space-1) auto var(--space-2);
  color: var(--accent-400);
}
.step-card-icon svg { width: 28px; height: 28px; }
.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { font-size: 0.85rem; color: var(--neutral-400); }

/* --- Transaction Check --- */
.tx-check-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.tx-check-form {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}
.tx-check-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--neutral-100);
  font-size: 1rem;
}
.tx-check-form input:focus { outline: none; border-color: var(--accent-400); }
.tx-result {
  display: none;
  background: var(--primary-600);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.tx-result.show { display: block; }
.tx-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.tx-result-row:last-child { border-bottom: none; }
.tx-result-row span:first-child { color: var(--neutral-400); }
.tx-result-row span:last-child { color: var(--neutral-100); font-weight: 600; }
.tx-result-error {
  display: none;
  padding: var(--space-3);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  color: var(--error-400);
  text-align: center;
  font-size: 0.9rem;
}
.tx-result-error.show { display: block; }

/* --- Contact --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.contact-card:hover { border-color: rgba(0, 212, 255, 0.3); transform: translateY(-2px); }
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card-icon.whatsapp { background: #25d366; }
.contact-card-icon.telegram { background: #0088cc; }
.contact-card-icon.email { background: var(--gradient-blue); }
.contact-card-icon.chat { background: var(--gradient-purple); }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-card p { font-size: 0.85rem; color: var(--neutral-400); }
.contact-form {
  background: var(--primary-700);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
textarea.form-input { resize: vertical; min-height: 120px; }

/* --- About --- */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4);
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-img img { width: 100%; }
.about-content h2 { margin-bottom: var(--space-2); }
.about-content p { color: var(--neutral-300); margin-bottom: var(--space-2); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1);
  margin-top: var(--space-2);
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--neutral-200);
}
.about-feature svg { width: 20px; height: 20px; color: var(--accent-400); flex-shrink: 0; }

/* --- Content Page (Privacy, Terms, FAQ) --- */
.content-page {
  max-width: 800px;
  margin: 0 auto;
}
.content-page h1 { margin-bottom: var(--space-1); }
.content-page h2 { font-size: 1.3rem; margin: var(--space-3) 0 var(--space-1); }
.content-page p { color: var(--neutral-300); margin-bottom: var(--space-2); }
.content-page ul { margin-bottom: var(--space-2); padding-left: var(--space-2); }
.content-page ul li {
  list-style: disc;
  color: var(--neutral-300);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
  background: var(--neutral-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-6) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
  color: var(--neutral-100);
}
.footer-col p { font-size: 0.88rem; color: var(--neutral-400); margin-bottom: var(--space-2); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--accent-400); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
  color: var(--neutral-50);
}
.footer-brand img { width: 32px; height: 32px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: var(--space-2);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}
.footer-social a:hover { background: rgba(0,212,255,0.1); border-color: var(--accent-400); }
.footer-social svg { width: 18px; height: 18px; color: var(--neutral-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: var(--neutral-500);
  flex-wrap: wrap;
  gap: var(--space-1);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 900;
  box-shadow: var(--shadow-glow-blue);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 22px; height: 22px; }

/* --- Page Header (internal pages) --- */
.page-header {
  padding: var(--space-5) 0 var(--space-3);
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: var(--space-1); }
.page-header p { color: var(--neutral-300); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* --- Notification toast --- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-600);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  color: var(--neutral-100);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transition: all var(--transition-base);
  max-width: 90%;
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { border-color: rgba(34, 197, 94, 0.4); }
.toast.error { border-color: rgba(239, 68, 68, 0.4); }

/* --- Demo Notice --- */
.demo-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--warning-400);
  margin-bottom: var(--space-3);
}
.demo-notice svg { width: 20px; height: 20px; flex-shrink: 0; }

/* --- Games Page (all games listing) --- */
.games-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

/* --- Misc --- */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-6);
  color: var(--neutral-400);
}
.no-results h3 { margin-bottom: var(--space-1); }
.hidden { display: none !important; }
