/* ============================================================
   SpelGloed — Hoofdstijl
   Donker thema · Geel gloeiend accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary:    #0d0d14;
  --bg-secondary:  #13131f;
  --bg-card:       #1a1a2a;
  --bg-card-hover: #1f1f33;
  --accent:        #f5c518;
  --accent-glow:   #f5c518cc;
  --accent-dark:   #c9a010;
  --accent-light:  #ffe066;
  --text-primary:  #f0f0f0;
  --text-muted:    #8888aa;
  --text-dim:      #55556a;
  --border:        #2a2a40;
  --border-accent: #f5c51844;
  --success:       #22c55e;
  --danger:        #ef4444;
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 20px rgba(245,197,24,0.25);
  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.accent { color: var(--accent); }
.glow-text {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow), 0 0 30px rgba(245,197,24,0.3);
}

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Age Gate Overlay ── */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(5,5,10,0.97);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(12px);
}
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-accent), var(--shadow);
}
.age-gate-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 24px;
}
.age-gate-box h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--accent);
}
.age-gate-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.age-gate-buttons { display: flex; gap: 16px; justify-content: center; }
.btn-age-yes {
  background: var(--accent);
  color: #0d0d14;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-age-yes:hover { background: var(--accent-light); box-shadow: var(--shadow-accent); }
.btn-age-no {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-age-no:hover { border-color: var(--danger); color: var(--danger); }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-accent);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 8888;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.cookie-text { flex: 1; font-size: 0.9rem; color: var(--text-muted); min-width: 240px; }
.cookie-text a { color: var(--accent); border-bottom: 1px dotted var(--accent); }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent);
  color: #0d0d14;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--accent-light); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--text-muted); color: var(--text-primary); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,20,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--border-accent); }
.navbar-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-logo img { width: 38px; height: 38px; }
.navbar-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
  letter-spacing: 1px;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.navbar-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}
.navbar-nav a.active { color: var(--accent); }
.navbar-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.btn-cart:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.cart-badge {
  background: var(--accent);
  color: #0d0d14;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -6px; right: -6px;
}
.hamburger {
  display: none;
  background: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  padding: 8px;
}
.mobile-menu {
  display: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--accent); background: var(--bg-card); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,197,24,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(100,50,200,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0d0d14 0%, #13131f 50%, #0d0d14 100%);
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 660px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--border-accent);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: #0d0d14;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 30px rgba(245,197,24,0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat span { font-size: 0.85rem; color: var(--text-muted); }

/* ── Section Titles ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ── Product Cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent), var(--shadow);
}
.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-secondary);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-populair { background: var(--accent); color: #0d0d14; }
.badge-nieuw { background: #7c3aed; color: #fff; }
.badge-sale { background: var(--danger); color: #fff; }
.badge-hit { background: #0ea5e9; color: #fff; }
.badge-top { background: #22c55e; color: #fff; }
.product-card-body { padding: 18px; }
.product-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.product-card-publisher {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tag {
  padding: 3px 9px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--text-dim);
  transition: var(--transition);
}
.product-card:hover .tag { border-color: var(--border-accent); color: var(--text-muted); }
.product-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-add-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #0d0d14;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-add-cart:hover {
  background: var(--accent-light);
  box-shadow: var(--shadow-accent);
}
.btn-detail {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-detail:hover { border-color: var(--accent); color: var(--accent); }
.product-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Categories ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.category-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
}
.category-icon { font-size: 2.2rem; margin-bottom: 12px; }
.category-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}
.category-count { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }

/* ── Promo Banner ── */
.promo-banner {
  background: linear-gradient(135deg, #1a1a2a 0%, #1f1520 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.promo-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.promo-banner p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-accent); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--border-accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Filter Bar ── */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-search {
  flex: 1;
  min-width: 200px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}
.filter-search:focus { border-color: var(--accent); }
.filter-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}
.filter-select:focus { border-color: var(--accent); color: var(--text-primary); }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-secondary);
}
.chip:hover, .chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245,197,24,0.08);
}

/* ── Cart Page ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.cart-items {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h2 { font-size: 1.3rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: var(--bg-card-hover); }
.cart-item-img {
  width: 80px; height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 600; margin-bottom: 4px; }
.cart-item-sub { font-size: 0.82rem; color: var(--text-muted); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
}
.qty-btn {
  background: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 4px 8px;
  transition: var(--transition);
}
.qty-btn:hover { color: var(--accent); }
.qty-num { font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  color: var(--text-dim);
  font-size: 1rem;
  padding: 4px;
  transition: var(--transition);
}
.cart-item-remove:hover { color: var(--danger); }
.cart-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.4; }
.cart-empty h3 { font-size: 1.3rem; margin-bottom: 8px; }

/* ── Order Summary ── */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.order-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.summary-row.total {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.summary-row.total span:last-child { color: var(--accent); }
.btn-checkout {
  width: 100%;
  background: var(--accent);
  color: #0d0d14;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-checkout:hover {
  background: var(--accent-light);
  box-shadow: 0 0 30px rgba(245,197,24,0.35);
  transform: translateY(-2px);
}

/* ── Checkout Modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,10,0.85);
  backdrop-filter: blur(8px);
  z-index: 7777;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-accent), var(--shadow);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  color: var(--text-dim);
  font-size: 1.4rem;
  transition: var(--transition);
}
.modal-close:hover { color: var(--text-primary); }
.modal-box h3 { font-size: 1.6rem; margin-bottom: 8px; }
.modal-box > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,197,24,0.1); }
.form-input::placeholder { color: var(--text-dim); }
.payment-note {
  background: rgba(245,197,24,0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.payment-note strong { color: var(--accent); }
.order-loading {
  text-align: center;
  padding: 40px 20px;
}
.spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.order-success { text-align: center; padding: 40px 20px; }
.order-success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.order-success h3 { font-size: 1.8rem; color: var(--accent); margin-bottom: 12px; }
.order-success p { color: var(--text-muted); }

/* ── Game Detail Modal ── */
.game-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.game-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.game-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.game-detail-info {}
.game-detail-info h2 { font-size: 1.8rem; margin-bottom: 8px; }
.game-detail-info .publisher { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.game-detail-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.game-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.meta-item label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.meta-item span { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }

/* ── About Page ── */
.about-hero {
  background: linear-gradient(135deg, rgba(245,197,24,0.05) 0%, transparent 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border-accent); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  border: 2px solid var(--border-accent);
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.82rem; color: var(--text-muted); }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--border-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.contact-item-text span { font-size: 0.95rem; color: var(--text-primary); }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── Legal Pages ── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.legal-content h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal-date { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; color: var(--accent); margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 20px 0 8px; }
.legal-content p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 12px; line-height: 1.75; }
.legal-content ul { color: var(--text-muted); font-size: 0.92rem; padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; }

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 20px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 0.82rem; color: var(--text-dim); transition: var(--transition); }
.footer-legal-links a:hover { color: var(--accent); }
.age-badge {
  background: var(--border-accent);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 8000;
  pointer-events: none;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-primary);
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease, fadeOut 0.4s ease 2.6s forwards;
  max-width: 300px;
}
.toast.error { border-left-color: var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; transform: translateX(60px); } }

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.page-header p { color: var(--text-muted); }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }

/* ── Newsletter ── */
.newsletter-section {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.newsletter-section h2 { font-size: 2rem; margin-bottom: 12px; }
.newsletter-section p { color: var(--text-muted); margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .game-detail-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; min-height: auto; }
  .promo-banner { flex-direction: column; padding: 32px 24px; }
  .about-hero { padding: 32px 24px; }
  .legal-content { padding: 32px 20px; }
  .modal-box { padding: 28px 20px; }
  .age-gate-box { padding: 36px 24px; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .game-detail-meta { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero-buttons { flex-direction: column; }
  .age-gate-buttons { flex-direction: column; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ── Misc helpers ── */
.hidden { display: none !important; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.fw-700 { font-weight: 700; }
