/* ========================================
   UMBRA CHEATS — Redesigned Landing Page
   Dark Gaming Theme with Purple Accents
   ======================================== */

/* --- CSS Variables --- */
:root {
  --bg-primary: #050510;
  --bg-secondary: #0a0a1a;
  --bg-card: #0d0d20;
  --bg-card-hover: #12122a;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-dark: #5b21b6;
  --accent-glow: rgba(124, 58, 237, 0.4);
  --accent-glow-strong: rgba(124, 58, 237, 0.7);
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --border: rgba(124, 58, 237, 0.15);
  --border-hover: rgba(124, 58, 237, 0.4);
  --discord: #5865F2;
  --success: #22c55e;
  --hot: #ef4444;
  --free: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-display: 'Orbitron', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Particle Canvas --- */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
}

.logo-moon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-discord {
  color: var(--discord) !important;
}

.nav-loader {
  color: var(--accent-light) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-discord {
  background: var(--discord);
  color: white;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

/* Showcase Button */
.showcase-btn {
  position: relative;
  overflow: hidden;
}

.showcase-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.showcase-btn:hover::before {
  width: 200%;
  height: 200%;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle-line {
  display: block;
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 500;
  letter-spacing: 8px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 24px auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-light);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll Indicator — centered properly */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll-indicator span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* --- Glitch Effect --- */
.glitch {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch::before {
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch::after {
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-4px, -2px); }
  94% { transform: translate(4px, 2px); }
  96% { transform: translate(-2px, 1px); }
  98% { transform: translate(2px, -1px); }
}

@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(3px, 1px); }
  93% { transform: translate(-3px, -1px); }
  95% { transform: translate(2px, -2px); }
  97% { transform: translate(-2px, 2px); }
}

/* --- Section Shared --- */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* --- Features --- */
.features {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Vouches Section --- */
.vouches {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  padding: 80px 0;
  overflow: hidden;
}

/* Full-width marquee */
.vouches-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 10px 0;
}

.vouches-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: vouches-scroll 40s linear infinite;
}

.vouches-track:hover {
  animation-play-state: paused;
}

@keyframes vouches-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual vouch card */
.vouch-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: var(--transition);
}

.vouch-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.vouch-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vouch-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(124, 58, 237, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--discord);
  font-size: 16px;
  flex-shrink: 0;
}

.vouch-user {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vouch-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.vouch-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 10px;
}

.vouch-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.vouch-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: var(--discord);
  letter-spacing: 0.5px;
}

/* --- Products --- */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow);
}

.product-card.hidden {
  display: none;
}

.product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-game-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.15);
}

.product-game-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--accent);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: white;
}

.product-badge.hot {
  background: var(--hot);
}

.product-badge.free {
  background: var(--free);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-variants {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-rating {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 12px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 14px;
  color: var(--text-secondary);
}

.product-price strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

/* --- Featured Video --- */
.featured-video {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-glow);
}

.video-iframe {
  width: 100%;
  height: 100%;
}

/* --- Discord Section --- */
.discord {
  padding: 80px 0;
}

.discord-card {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.discord-content {
  position: relative;
  z-index: 1;
}

.discord-icon-large {
  font-size: 48px;
  color: var(--discord);
  margin-bottom: 20px;
}

.discord-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.discord-card p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}

.discord-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.discord-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.discord-feature i {
  color: var(--discord);
}

.discord-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.discord-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(40px);
  animation: blob-float 6s ease-in-out infinite;
}

.discord-blob.blob-2 {
  top: auto;
  right: auto;
  bottom: -100px;
  left: -100px;
  animation-delay: -3s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

/* --- FAQ --- */
.faq {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question i {
  font-size: 12px;
  color: var(--accent-light);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  background: var(--bg-secondary);
}

.footer-content,
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   PRELOADER — Starfield + Nebula + Particles
   ======================================== */
/* ========================================
   PRELOADER — Space Video Intro
   ======================================== */
/* ═══════════════════════════════════════════
   PRELOADER — SPACE INTRO
   ═══════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #06030d;
  overflow: hidden;
}

.preloader.fade-out {
  animation: preloaderFadeOut 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

.preloader.hidden { display: none; }

/* Starfield canvas */
.preloader-starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Nebula layers */
.preloader-nebula {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.preloader-nebula-1 {
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(107, 47, 214, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(217, 70, 239, 0.08) 0%, transparent 60%);
}

.preloader-nebula-2 {
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(45, 21, 102, 0.15) 0%, transparent 80%);
  animation: preloaderNebulaFloat 20s ease-in-out infinite;
}

@keyframes preloaderNebulaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(30px, -20px) scale(1.05); opacity: 0.8; }
  66% { transform: translate(-20px, 15px) scale(0.98); opacity: 0.5; }
}

/* Planets */
.preloader-planet {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border-radius: 50%;
}

.preloader-planet-main {
  width: 350px;
  height: 350px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle at 35% 35%,
    rgba(139, 92, 246, 0.25) 0%,
    rgba(107, 47, 214, 0.15) 30%,
    rgba(45, 21, 102, 0.2) 60%,
    rgba(6, 3, 13, 0.8) 100%);
  box-shadow:
    inset -30px -30px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(139, 92, 246, 0.15),
    0 0 160px rgba(107, 47, 214, 0.08);
  animation: preloaderPlanetGlow 8s ease-in-out infinite;
}

.preloader-planet-small {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 8%;
  background: radial-gradient(circle at 40% 30%,
    rgba(217, 70, 239, 0.3) 0%,
    rgba(107, 47, 214, 0.15) 50%,
    rgba(6, 3, 13, 0.9) 100%);
  box-shadow:
    inset -8px -8px 20px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(217, 70, 239, 0.1);
  animation: preloaderPlanetFloat 12s ease-in-out infinite;
}

.preloader-planet-ring {
  position: absolute;
  width: 500px;
  height: 100px;
  bottom: -20px;
  right: -155px;
  border: 1.5px solid rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  transform: rotateX(75deg) rotateZ(-15deg);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.05);
}

@keyframes preloaderPlanetGlow {
  0%, 100% { box-shadow: inset -30px -30px 60px rgba(0,0,0,0.6), 0 0 80px rgba(139,92,246,0.15), 0 0 160px rgba(107,47,214,0.08); }
  50% { box-shadow: inset -30px -30px 60px rgba(0,0,0,0.6), 0 0 100px rgba(139,92,246,0.22), 0 0 200px rgba(107,47,214,0.12); }
}

@keyframes preloaderPlanetFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
}

/* Noise overlay */
.preloader-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* Vignette */
.preloader-vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 3, 13, 0.7) 100%);
}

/* Shooting stars container */
.preloader-shooting-stars {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.preloader-shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #a78bfa;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}

.preloader-shooting-star::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to left, #a78bfa, transparent);
  transform-origin: right center;
}

@keyframes preloaderShootingStar {
  0% { opacity: 0; transform: translate(0, 0); }
  5% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(-400px, 250px); }
}

/* ═══════════════════════════════════════════
   PRELOADER CENTER — Logo + Spin Loader
   ═══════════════════════════════════════════ */
.preloader-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.center-visible .preloader-center {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.preloader.center-fadeout .preloader-center {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.05);
  transition: opacity 0.6s ease-in, transform 0.6s ease-in;
}

/* Logo */
.preloader-logo-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.4));
  animation: preloaderLogoFloat 4s ease-in-out infinite;
}

@keyframes preloaderLogoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.4)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 0 35px rgba(139, 92, 246, 0.6)); }
}

.preloader-logo-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ddd6fe, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════
   SPIN LOADER (purple theme)
   ═══════════════════════════════════════════ */
.spin-loader {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base glow */
.spin-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  filter: blur(16px);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Outer dashed ring — slow spin */
.spin-ring-dashed {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.25);
  animation: spin 10s linear infinite;
}

/* Main arc */
.spin-ring-main {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #8b5cf6;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
  animation: spin 2s linear infinite;
}

/* Reverse arc */
.spin-ring-reverse {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: #7c3aed;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
  animation: spin 3s linear infinite reverse;
}

/* Inner fast ring */
.spin-ring-fast {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-left-color: rgba(167, 139, 250, 0.6);
  animation: spin 1s ease-in-out infinite;
}

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

/* Orbital dot */
.spin-orbital {
  position: absolute;
  inset: 0;
  animation: spin 4s linear infinite;
}

.spin-orbital-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.9);
}

/* Center core */
.spin-core {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4b5fd;
  box-shadow: 0 0 10px rgba(196, 181, 253, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

/* Loading text */
.spin-text {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.7);
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
  min-height: 20px;
  transition: opacity 0.3s ease;
}

/* Hide body scroll during preloader */
body.loading {
  overflow: hidden;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 100;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 20px;
  }

  .mobile-toggle {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .discord-card {
    padding: 40px 24px;
  }

  .discord-features {
    gap: 16px;
  }

  .footer-content,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 70px 0;
  }

  .preloader-planet-main {
    width: 200px;
    height: 200px;
  }

  .preloader-planet-ring {
    width: 300px;
    right: -100px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-number {
    font-size: 22px;
  }
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.product-page-body {
  background: var(--bg-primary);
  min-height: 100vh;
}

.product-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Back Button */
.product-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
  margin-bottom: 32px;
}
.product-back-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

/* Layout: 2-column on desktop */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

/* Product Hero Banner */
.product-gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
.product-hero-banner {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-hero-icon {
  font-size: 72px;
  color: rgba(255, 255, 255, 0.12);
}
.product-hero-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.35);
}

/* Product Details */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badges */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}
.product-badge-tag.accent {
  color: var(--accent-light);
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}
.product-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Title */
.product-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

/* Description */
.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Variant Selector */
.product-variants-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-variants-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-variants-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.product-variants-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.variant-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}
.variant-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.variant-card.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
  box-shadow: 0 0 20px -8px var(--accent-glow);
}
.variant-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.variant-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Checkout Bar */
.product-checkout-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.checkout-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-selected {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.checkout-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

/* Quantity Picker */
.quantity-picker {
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
}
.qty-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.qty-input {
  width: 50px;
  height: 40px;
  text-align: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Checkout Actions */
.checkout-actions {
  display: flex;
  gap: 10px;
}
.btn-buy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}
.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

/* === Product Sections (Features, Requirements, FAQ) === */
.product-section {
  margin-bottom: 64px;
}
.product-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.product-section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.product-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--text-primary);
}

/* Features Grid */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature-block {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
}
.feature-block:hover {
  border-color: var(--border-hover);
}
.feature-block-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.feature-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

/* Requirements Grid */
.product-requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.requirement-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
}
.requirement-card:hover {
  border-color: var(--border-hover);
}
.requirement-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-light);
  font-size: 16px;
  flex-shrink: 0;
}
.requirement-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.requirement-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.requirement-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

/* FAQ */
.product-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.product-faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}
.product-faq-item:hover {
  border-color: var(--border-hover);
}
.product-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.product-faq-question i {
  color: var(--text-muted);
  font-size: 12px;
  transition: transform 0.3s ease;
}
.product-faq-item.open .product-faq-question i {
  transform: rotate(180deg);
}
.product-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.product-faq-item.open .product-faq-answer {
  max-height: 200px;
}
.product-faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* === Cart Toggle Button (Nav) === */
.cart-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}
.cart-toggle-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
}

/* === Cart Overlay === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* === Cart Sidebar === */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}
.cart-sidebar.open {
  transform: translateX(0);
}

/* Cart Sidebar Header */
.cart-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-sidebar-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}
.cart-sidebar-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(124, 58, 237, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
}
.cart-sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 14px;
}
.cart-sidebar-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Cart Items Area */
.cart-sidebar-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

/* Cart Empty State */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 8px;
}
.cart-empty-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--text-muted);
  font-size: 22px;
  margin-bottom: 8px;
}
.cart-empty-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.cart-empty-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Cart Item */
.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 10px;
  transition: var(--transition);
}
.cart-item:hover {
  border-color: var(--border-hover);
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-variant {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-light);
  margin-top: 6px;
}

/* Cart Item Controls */
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 12px;
}
.cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 10px;
}
.cart-item-remove:hover {
  color: var(--hot);
  background: rgba(239, 68, 68, 0.1);
}

/* Cart Quantity Controls */
.cart-item-qty {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-size: 9px;
}
.cart-qty-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.cart-qty-value {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Cart Sidebar Footer */
.cart-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}
.cart-total-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--accent-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-clear-btn {
  width: 100%;
  padding: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.cart-clear-btn:hover {
  color: var(--hot);
}

/* === Discount Roller === */
.discount-section {
  padding: 60px 0;
}
.discount-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.discount-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
.discount-logo {
  width: 40px;
  height: 40px;
}
.discount-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.discount-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
/* Case Opening Strip */
.case-opener {
  position: relative;
  margin: 0 auto 28px;
  display: none;
  max-width: 100%;
}
.case-opener.active {
  display: block;
}
.case-pointer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #fff;
  z-index: 3;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.case-pointer::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #fff;
}
.case-pointer::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #fff;
}
.case-window {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  height: 80px;
}
.case-strip {
  display: flex;
  height: 80px;
  will-change: transform;
}
.case-item {
  min-width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.case-item.tier-5 {
  background: rgba(136, 136, 160, 0.1);
  color: var(--text-secondary);
}
.case-item.tier-10 {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}
.case-item.tier-15 {
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-light);
}
.case-item.tier-20 {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(251, 191, 36, 0.25));
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}
.case-item.tier-20::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 0;
  pointer-events: none;
}
/* Roll Button */
.discount-roll-btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-main);
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: transparent;
  color: var(--accent-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.discount-roll-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}
.discount-roll-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.discount-hint {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
/* Result */
.discount-result {
  margin-top: 24px;
}
.discount-result-pct {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.discount-result-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.discount-code-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.discount-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 2px;
}
.discount-copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  padding: 4px;
}
.discount-copy-btn:hover { color: var(--accent-light); }
.discount-copy-btn.copied { color: var(--success); }
.discount-expire {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

/* === Checkout Modal — Branded === */
@keyframes checkoutGlow {
  0%, 100% { box-shadow: 0 0 30px var(--accent-glow), 0 24px 80px rgba(0,0,0,0.6); }
  50% { box-shadow: 0 0 50px var(--accent-glow-strong), 0 24px 80px rgba(0,0,0,0.6); }
}
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.checkout-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 460px;
  max-width: 94vw;
  background: var(--bg-primary);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.checkout-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  animation: checkoutGlow 3s ease-in-out infinite;
}
/* Gradient top bar */
.checkout-modal::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light), var(--accent));
  background-size: 200% 100%;
  animation: gradientSlide 4s linear infinite;
}
@keyframes gradientSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
/* Brand header */
.checkout-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 24px 6px;
}
.checkout-brand img {
  width: 32px;
  height: 32px;
}
.checkout-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}
.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 16px;
}
.checkout-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-modal-heading {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.checkout-modal-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 2px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.checkout-modal-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}
.checkout-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 12px;
}
.checkout-modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}
/* Order summary */
.checkout-summary {
  margin: 0 24px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-summary-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout-summary-product {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.checkout-summary-variant {
  font-size: 12px;
  color: var(--text-muted);
}
.checkout-summary-price {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Divider */
.checkout-divider {
  height: 1px;
  background: var(--border);
  margin: 0 24px;
}
/* Body */
.checkout-modal-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.checkout-required {
  color: var(--accent-light);
}
.checkout-optional {
  font-weight: 400;
  color: var(--text-muted);
}
.checkout-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}
.checkout-input::placeholder {
  color: var(--text-muted);
}
.checkout-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow), inset 0 0 20px rgba(124, 58, 237, 0.05);
}
.checkout-hint {
  font-size: 11px;
  color: var(--text-muted);
}
/* TOS */
.checkout-tos {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.checkout-tos:hover {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.03);
}
.checkout-tos input[type="checkbox"] {
  display: none;
}
.checkout-tos-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: var(--bg-primary);
  color: transparent;
  font-size: 11px;
  transition: var(--transition);
  margin-top: 1px;
}
.checkout-tos input:checked ~ .checkout-tos-check {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 12px var(--accent-glow);
}
.checkout-tos-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.checkout-tos-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}
.checkout-tos-sub a {
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.3);
  transition: var(--transition);
}
.checkout-tos-sub a:hover {
  border-color: var(--accent-light);
}
/* Footer / Pay button */
.checkout-modal-footer {
  padding: 4px 24px 24px;
}
.checkout-pay-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  border: none;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
  background-size: 200% 200%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.checkout-pay-btn:hover:not(:disabled) {
  background-position: 100% 0;
  box-shadow: 0 6px 30px var(--accent-glow-strong);
  transform: translateY(-1px);
}
.checkout-pay-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
/* Secure footer note */
.checkout-secure-note {
  text-align: center;
  padding: 12px 24px 20px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.checkout-secure-note i {
  color: var(--success);
  font-size: 10px;
}

/* === Responsive === */
@media (max-width: 768px) {
  /* Product page layout */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-gallery { position: static; }
  .product-hero-banner { aspect-ratio: 16 / 9; }
  .product-page { padding-top: 75px; padding-bottom: 30px; }
  .product-title { font-size: 24px; }
  .product-description { font-size: 13px; }
  .product-back-btn { font-size: 12px; padding: 8px 14px; }

  /* Variants */
  .product-variants-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .variant-card { padding: 10px 12px; }
  .variant-name { font-size: 12px; }
  .variant-price { font-size: 13px; }

  /* Checkout bar */
  .product-checkout-bar { padding: 14px; }
  .checkout-actions { flex-direction: column; gap: 8px; }
  .btn-buy, .btn-cart { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }
  .checkout-selected { font-size: 13px; }
  .checkout-price { font-size: 16px; }
  .quantity-picker { margin-bottom: 4px; }

  /* Features / Requirements */
  .product-features-grid { grid-template-columns: 1fr; }
  .product-requirements-grid { grid-template-columns: 1fr; }
  .product-section-title { font-size: 20px; }
  .product-section-tag { font-size: 10px; }
  .product-badges { flex-wrap: wrap; gap: 6px; }

  /* Cart sidebar */
  .cart-sidebar { width: 100vw; }

  /* Checkout modal — full screen on mobile */
  .checkout-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
  }
  .checkout-modal.open {
    opacity: 1;
    pointer-events: auto;
  }
  .checkout-modal::before { border-radius: 0; }
  .checkout-brand { padding: 16px 16px 4px; }
  .checkout-brand-name { font-size: 16px; }
  .checkout-modal-header { padding: 8px 16px 12px; }
  .checkout-modal-heading { font-size: 12px; }
  .checkout-summary { margin: 0 16px; padding: 10px 12px; }
  .checkout-summary-product { font-size: 13px; }
  .checkout-summary-price { font-size: 16px; }
  .checkout-divider { margin: 0 16px; }
  .checkout-modal-body { padding: 14px 16px; gap: 12px; }
  .checkout-label { font-size: 11px; }
  .checkout-input { padding: 10px 14px; font-size: 13px; }
  .checkout-tos { padding: 12px 14px; gap: 10px; }
  .checkout-tos-text { font-size: 12px; }
  .checkout-tos-check { width: 20px; height: 20px; min-width: 20px; }
  .checkout-modal-footer { padding: 4px 16px 16px; }
  .checkout-pay-btn { padding: 13px 20px; font-size: 14px; }
  .checkout-secure-note { padding: 8px 16px 14px; font-size: 10px; }
  .checkout-modal-close { top: 12px; right: 12px; }

  /* Nav */
  .nav-actions { gap: 6px; }
  .cart-toggle-btn { display: flex; width: 36px; height: 36px; font-size: 14px; }
  .btn-sm { padding: 6px 10px; font-size: 11px; gap: 4px; }
  .logo-text { font-size: 16px; }
  .logo-moon { width: 24px; height: 24px; }

  /* Account / Login page */
  .login-card { max-width: 100%; border-radius: 14px; }
  .login-body { padding: 0 18px 18px; }
  .login-input { padding: 11px 14px; font-size: 13px; }
  .login-btn { padding: 12px; font-size: 14px; }
  .login-code-digit { width: 38px; height: 46px; font-size: 18px; }
  .account-page { padding: 80px 0 30px; }
  .login-subtitle { font-size: 12px; padding: 4px 18px 16px; }
  .login-brand-name { font-size: 16px; }

  /* Orders */
  .orders-header { flex-direction: column; gap: 10px; align-items: flex-start; }
  .orders-title { font-size: 20px; }
  .order-card-header { flex-direction: column; gap: 8px; align-items: flex-start; padding: 14px 16px; }
  .order-card-right { width: 100%; justify-content: space-between; }
  .order-item { padding: 12px; }
  .order-item-key { flex-direction: column; gap: 4px; align-items: flex-start; padding: 8px 10px; }
  .order-item-key-value { font-size: 11px; }

  /* TOS page */
  .tos-page { padding: 80px 0 30px; }
  .tos-content { padding: 20px; }
  .tos-title { font-size: 24px; }

  /* Discount roller */
  .discount-card { padding: 32px 20px; }
  .discount-heading { font-size: 22px; }
  .discount-sub { font-size: 13px; }
  .discount-roll-btn { padding: 14px 28px; font-size: 14px; }
  .discount-result-pct { font-size: 36px; }
  .discount-code { font-size: 15px; letter-spacing: 1px; }
  .discount-code-box { padding: 10px 16px; }
  .case-item { min-width: 90px; font-size: 20px; }

  /* Status page */
  .status-item { padding: 14px 16px; }
  .status-item-name { font-size: 14px; }
  .status-badge { font-size: 11px; padding: 4px 10px; }
}

@media (max-width: 380px) {
  .product-variants-grid { grid-template-columns: 1fr; }
  .login-code-inputs { gap: 4px; }
  .login-code-digit { width: 34px; height: 42px; font-size: 16px; }
  .case-item { min-width: 75px; font-size: 18px; }
  .nav-actions .btn-sm { display: none; }
  .discount-code { font-size: 13px; }
}
