/* =============================================
   OlympusVault.nz — Main Stylesheet
   New Zealand | Greek Mythology Merchandise
   ============================================= */

:root {
  --gold: #FFD700;
  --gold-light: #FFE855;
  --gold-dark: #D4A000;
  --gold-glow: rgba(255, 215, 0, 0.6);
  --purple: #6B21A8;
  --purple-mid: #7C3AED;
  --purple-light: #A855F7;
  --purple-dark: #3B0764;
  --bg-dark: #0A0514;
  --bg-card: #12082A;
  --bg-card2: #1A0F35;
  --text-light: #F5F0FF;
  --text-muted: #C4B5D4;
  --accent: #E9D5FF;
  --success: #22C55E;
  --danger: #EF4444;
  --border-gold: rgba(255, 215, 0, 0.3);
  --border-purple: rgba(107, 33, 168, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition: 0.3s ease;
  --font-main: 'Cinzel', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- Stars background ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,215,0,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(255,215,0,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 55%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 25%, rgba(255,215,0,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 70%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 80%, rgba(255,215,0,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(255,215,0,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 50%, rgba(255,255,255,0.1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p { color: var(--text-muted); line-height: 1.7; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 5, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 12px var(--gold-glow);
  animation: pulse-logo 3s ease-in-out infinite;
}
.nav-logo-text {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
  letter-spacing: 0.05em;
}
.nav-logo-text span { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark) !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}
.cart-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--bg-dark) !important;
}
.cart-count {
  background: var(--purple);
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -6px; right: -6px;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.8);
  animation: pulse-badge 2s ease-in-out infinite;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper { padding-top: 72px; }

/* ===== SECTION LAYOUT ===== */
.section { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--gold); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-dark) 0%, #1A0A35 40%, #0D0620 100%);
}
.hero-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,33,168,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotate-glow 15s linear infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero-title {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.4));
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}
.hero-image-ring {
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.15);
  animation: rotate-ring 20s linear infinite;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--gold);
  display: block;
  text-shadow: 0 0 10px var(--gold-glow);
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(255,215,0,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--bg-dark);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(255,215,0,0.08);
  box-shadow: 0 0 12px rgba(255,215,0,0.2);
  color: var(--gold-light);
}
.btn-purple {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  color: white;
  box-shadow: 0 4px 15px rgba(107,33,168,0.35);
}
.btn-purple:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  transform: translateY(-2px);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-danger {
  background: linear-gradient(135deg, var(--danger), #B91C1C);
  color: white;
}
.btn-danger:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card { display: flex; flex-direction: column; }
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-card2), var(--purple-dark));
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-badge.new { background: var(--purple-light); color: white; }
.product-badge.limited { background: var(--danger); color: white; }
.product-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.product-category { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.product-name { font-family: var(--font-main); font-size: 1rem; color: var(--text-light); font-weight: 600; }
.product-description { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; gap: 0.5rem; }
.product-price { font-family: var(--font-main); font-size: 1.2rem; font-weight: 700; color: var(--gold); text-shadow: 0 0 8px var(--gold-glow); }
.product-price-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; margin-right: 0.25rem; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(255,215,0,0.25), rgba(255,215,0,0.1));
  box-shadow: 0 0 15px rgba(255,215,0,0.2);
}
.feature-card h3 { font-size: 1.05rem; color: var(--gold); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-light); }
.testimonial-location { font-size: 0.75rem; color: var(--text-muted); }

/* ===== GAME SECTION ===== */
.game-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.game-screenshot {
  position: relative;
  background: linear-gradient(160deg, #1A0A35, #0D0620);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
}
.game-screenshot img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}
.game-info { padding: 2rem; }
.game-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.game-tag {
  background: rgba(107,33,168,0.2);
  border: 1px solid var(--border-purple);
  color: var(--purple-light);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

/* ===== GAME REEL DEMO ===== */
.reel-demo {
  background: var(--bg-card2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.reel-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  overflow: hidden;
}
.reel-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80px;
}
.reel-symbol {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(107,33,168,0.2));
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.reel-symbol.highlight {
  background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(255,215,0,0.1));
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
  animation: symbol-glow 1s ease-in-out infinite alternate;
}
.spin-result {
  font-size: 1.1rem;
  color: var(--gold);
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 600;
}

/* ===== CART ===== */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  font-family: var(--font-main);
}
.cart-table td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,215,0,0.08);
}
.cart-item-image {
  width: 64px; height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { display: flex; align-items: center; gap: 1rem; }
.cart-item-name { font-weight: 600; color: var(--text-light); font-size: 0.95rem; }
.cart-item-variant { font-size: 0.78rem; color: var(--text-muted); }
.qty-control { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 30px; height: 30px;
  background: var(--bg-card2);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: rgba(255,215,0,0.1); }
.qty-value { color: var(--text-light); font-weight: 600; min-width: 24px; text-align: center; }
.cart-remove {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem;
  transition: var(--transition);
  border-radius: 6px;
}
.cart-remove:hover { background: rgba(239,68,68,0.1); }

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.order-summary h3 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.1rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
.summary-row + .summary-row { border-top: 1px solid rgba(255,255,255,0.05); }
.summary-row.total { border-top: 1px solid var(--border-gold); margin-top: 0.5rem; padding-top: 1rem; }
.summary-row.total .label, .summary-row.total .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-main);
}
.summary-label { color: var(--text-muted); font-size: 0.9rem; }
.summary-value { color: var(--text-light); font-size: 0.9rem; font-weight: 600; }
.summary-value.free { color: var(--success); }

/* ===== CHECKOUT FORM ===== */
.checkout-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-card2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  color: var(--text-light);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(196,181,212,0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== CHECKOUT STEPS ===== */
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2.5rem; }
.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.step.active { color: var(--gold); }
.step.done { color: var(--success); }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.step.active .step-num { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.step.done .step-num { background: var(--success); color: white; border-color: var(--success); }
.step-line { width: 60px; height: 2px; background: var(--border-gold); margin: 0 0.25rem; }
.step-line.done { background: var(--success); }

/* ===== SUCCESS SCREEN ===== */
.success-screen {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.05));
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  animation: success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.success-screen h2 { color: var(--success); margin-bottom: 0.75rem; }
.success-screen p { max-width: 480px; margin: 0 auto 1.5rem; }
.order-number {
  background: var(--bg-card2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ===== LOADING SPINNER ===== */
.loading-screen {
  text-align: center;
  padding: 3rem;
}
.spinner {
  width: 60px; height: 60px;
  border: 3px solid rgba(255,215,0,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}
.loading-screen p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== EMPTY CART ===== */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}
.empty-cart-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-cart h3 { color: var(--text-light); margin-bottom: 0.5rem; }
.empty-cart p { margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
footer {
  background: rgba(5, 2, 15, 0.98);
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0 1.5rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(255,215,0,0.1);
  box-shadow: 0 0 10px rgba(255,215,0,0.2);
  color: var(--gold-light);
}
.footer-col h4 { color: var(--gold); font-family: var(--font-main); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.88rem; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.6rem; font-size: 0.88rem; color: var(--text-muted); }
.footer-contact-item span:first-child { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.08);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--gold); }
.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #FCA5A5;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10, 5, 20, 0.97);
  border-top: 1px solid var(--border-gold);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p { font-size: 0.88rem; flex: 1; min-width: 250px; color: var(--text-muted); }
.cookie-banner p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 5, 20, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: success-pop 0.4s ease;
}
.age-gate-icon { font-size: 3rem; margin-bottom: 1rem; }
.age-gate-card h2 { color: var(--gold); margin-bottom: 0.75rem; }
.age-gate-card p { margin-bottom: 2rem; font-size: 0.9rem; }
.age-gate-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--bg-dark) 0%, #1A0A35 60%, #0D0620 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(107, 33, 168, 0.2);
  border: 1px solid var(--border-purple);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  color: var(--purple-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.page-hero h1 { color: var(--gold); margin-bottom: 0.75rem; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }

/* ===== INFO BOXES ===== */
.info-box {
  background: rgba(255,215,0,0.05);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.info-box strong { color: var(--gold); }
.info-box.purple {
  background: rgba(107,33,168,0.05);
  border-color: var(--border-purple);
  border-left-color: var(--purple-light);
}
.info-box.purple strong { color: var(--purple-light); }

/* ===== TABS ===== */
.tabs { display: flex; gap: 0.25rem; border-bottom: 1px solid var(--border-gold); margin-bottom: 2rem; }
.tab-btn {
  padding: 0.75rem 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font-body);
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--gold-light); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== MISC COMPONENTS ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(255,215,0,0.1); color: var(--gold); border: 1px solid var(--border-gold); }
.badge-purple { background: rgba(107,33,168,0.15); color: var(--purple-light); border: 1px solid var(--border-purple); }

.highlight-box {
  background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(107,33,168,0.08));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem 0;
  opacity: 0.3;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.88rem; }

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 9998;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 320px;
  box-shadow: var(--shadow-gold);
  font-size: 0.88rem;
  transform: translateX(400px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.notification.show { transform: translateX(0); }
.notification-icon { font-size: 1.2rem; flex-shrink: 0; }
.notification-text { color: var(--text-light); }
.notification-text span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }
.notification-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.1rem;
  margin-left: auto;
  transition: var(--transition);
}
.notification-close:hover { color: var(--gold); }

/* ===== FILTER PILLS ===== */
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-pill {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
  letter-spacing: 0.03em;
  font-family: var(--font-body);
}
.filter-pill.active, .filter-pill:hover {
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  color: var(--gold);
  border-color: var(--gold);
}

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { color: var(--gold); margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.policy-content h3 { color: var(--text-light); margin: 1.5rem 0 0.5rem; font-size: 1.05rem; }
.policy-content p { margin-bottom: 0.9rem; font-size: 0.92rem; }
.policy-content ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.policy-content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.policy-content ul li::before { content: '⚡'; position: absolute; left: 0; font-size: 0.75rem; top: 50%; transform: translateY(-50%); }
.policy-last-updated { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse-logo {
  0%, 100% { box-shadow: 0 0 8px var(--gold-glow); }
  50% { box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(255,215,0,0.15); }
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 5px rgba(139,92,246,0.6); }
  50% { box-shadow: 0 0 12px rgba(139,92,246,1); }
}
@keyframes rotate-glow {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes success-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes symbol-glow {
  from { box-shadow: 0 0 8px rgba(255,215,0,0.3); }
  to { box-shadow: 0 0 20px rgba(255,215,0,0.7), 0 0 40px rgba(255,215,0,0.3); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fade-in-up 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Game preview layout responsive */
@media (max-width: 768px) {
  .game-preview-layout { grid-template-columns: 1fr !important; }
}

/* Shimmer button effect */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  border-radius: var(--radius);
}
.btn-primary { position: relative; overflow: hidden; }
.btn-primary:hover::after { animation: shimmer 0.5s ease forwards; }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 5, 20, 0.98);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(16px);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.75rem 1rem; font-size: 1rem; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-steps { gap: 0; }
  .step-line { width: 30px; }
  .step span:last-child { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; }
  .reel-symbol { width: 60px; height: 60px; font-size: 1.5rem; }
  .reel-column { width: 60px; }
}
