/* ============================================
   ARENA TITAN CORE — Imperial Gladiator Engine
   ============================================ */

:root {
  --bg-primary: #0f0a07;
  --bg-secondary: #1b1410;
  --bg-tertiary: #2c1f18;

  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,215,120,0.12);
  --glass-shadow: 0 0 80px rgba(255,120,40,0.16);

  --gold-grad: linear-gradient(135deg, #f59e0b, #fcd34d);
  --gold-glow: rgba(245,158,11,0.45);
  --crimson-grad: linear-gradient(135deg, #dc2626, #ef4444);
  --crimson-glow: rgba(239,68,68,0.35);
  --bronze-grad: linear-gradient(135deg, #b45309, #f59e0b);
  --bronze-glow: rgba(180,83,9,0.30);
  --premium-blend: linear-gradient(135deg, #f59e0b, #dc2626, #7c2d12);

  --text-primary: #fff6e8;
  --text-secondary: #f3d6b0;
  --text-muted: #bfa48a;

  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-robotic: 'Orbitron', 'IBM Plex Mono', monospace;

  --container: 1380px;
  --radius: 22px;
  --radius-lg: 34px;
  --radius-pill: 100px;

  --header-height: 58px;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(245,158,11,0.10), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(220,38,38,0.08), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(124,45,18,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ============================================
   EMBER PARTICLE LAYER
   ============================================ */
.ember-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #fcd34d, transparent 70%);
  border-radius: 50%;
  opacity: 0.7;
  animation: emberRise 12s linear infinite;
  box-shadow: 0 0 8px #f59e0b;
}
.ember:nth-child(1){ left:5%; animation-delay:0s; }
.ember:nth-child(2){ left:18%; animation-delay:2s; }
.ember:nth-child(3){ left:32%; animation-delay:5s; }
.ember:nth-child(4){ left:48%; animation-delay:1s; }
.ember:nth-child(5){ left:62%; animation-delay:6s; }
.ember:nth-child(6){ left:78%; animation-delay:3s; }
.ember:nth-child(7){ left:88%; animation-delay:8s; }
.ember:nth-child(8){ left:95%; animation-delay:4s; }

@keyframes emberRise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(40px) scale(0.4); opacity: 0; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  backdrop-filter: blur(20px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
}
.btn-lg { padding: 18px 38px; font-size: 1rem; }

.btn-primary {
  background: var(--premium-blend);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 10px 32px rgba(220,38,38,0.35), 0 0 24px var(--gold-glow);
  animation: gradientShift 6s ease infinite;
}
.btn-primary::after {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(220,38,38,0.5), 0 0 36px var(--gold-glow);
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

.btn-ghost {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
}
.btn-ghost:hover {
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.2);
}

@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================
   HEADER — SLIM ROBOTIC STYLE
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(8,5,3,0.92), rgba(15,10,7,0.78));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(245,158,11,0.18);
  box-shadow: 0 1px 0 rgba(252,211,77,0.06) inset, 0 8px 24px rgba(0,0,0,0.5);
  transition: height 0.3s ease, background 0.3s ease;
}

/* Robotic scanline accent under header */
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245,158,11,0) 5%,
    rgba(245,158,11,0.6) 20%,
    rgba(252,211,77,0.9) 50%,
    rgba(245,158,11,0.6) 80%,
    rgba(245,158,11,0) 95%,
    transparent 100%);
  opacity: 0.7;
  animation: scanLine 6s ease-in-out infinite;
}

@keyframes scanLine {
  0%,100% { opacity: 0.4; transform: scaleX(0.92); }
  50% { opacity: 0.95; transform: scaleX(1); }
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-robotic);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.logo-crest {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #1a1109, #2c1f18);
  border: 1px solid rgba(245,158,11,0.5);
  color: #fcd34d;
  font-size: 0.95rem;
  box-shadow: 0 0 12px rgba(245,158,11,0.35), inset 0 0 8px rgba(245,158,11,0.15);
  position: relative;
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}
.logo-crest::before {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(252,211,77,0.2);
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
  pointer-events: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: rgba(245,158,11,0.7);
  font-weight: 400;
  margin-top: 3px;
  text-transform: uppercase;
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 12px rgba(245,158,11,0.35), inset 0 0 8px rgba(245,158,11,0.15); }
  50% { box-shadow: 0 0 18px rgba(245,158,11,0.6), inset 0 0 10px rgba(245,158,11,0.25); }
}
.logo-crest { animation: pulseGlow 3.2s ease-in-out infinite; }

.main-nav ul {
  display: flex;
  gap: 2px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 4px;
  padding: 3px;
  backdrop-filter: blur(12px);
  position: relative;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.main-nav a {
  display: block;
  padding: 7px 16px;
  font-family: var(--font-robotic);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 3px;
  position: relative;
  transition: all 0.25s ease;
}
.main-nav a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold-grad);
  transition: width 0.3s ease, left 0.3s ease;
}
.main-nav a:hover {
  color: #fcd34d;
  background: rgba(245,158,11,0.06);
}
.main-nav a:hover::before { width: 60%; left: 20%; }
.main-nav a.active {
  background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(220,38,38,0.18));
  color: #fff;
  text-shadow: 0 0 8px rgba(252,211,77,0.6);
  box-shadow: inset 0 0 0 1px rgba(245,158,11,0.4), 0 0 12px rgba(245,158,11,0.25);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vip-badge {
  font-family: var(--font-robotic);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  padding: 4px 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, #1a1109, #2c1f18);
  border: 1px solid rgba(245,158,11,0.55);
  color: #fcd34d;
  box-shadow: inset 0 0 6px rgba(245,158,11,0.2), 0 0 8px rgba(245,158,11,0.25);
  text-shadow: 0 0 6px rgba(245,158,11,0.5);
  position: relative;
}

.header-cta .btn-primary {
  padding: 9px 18px;
  font-family: var(--font-robotic);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  border-radius: 4px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  animation: none;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  box-shadow: 0 0 16px rgba(245,158,11,0.4), inset 0 0 0 1px rgba(252,211,77,0.3);
}
.header-cta .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(245,158,11,0.6), inset 0 0 0 1px rgba(252,211,77,0.5);
}

.menu-toggle {
  display: none;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 4px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: #fcd34d;
  border-radius: 1px;
  transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 80px 0 70px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1) saturate(0.9);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,10,7,0.4) 0%, rgba(15,10,7,0.85) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(220,38,38,0.25), transparent 60%);
}
.hero-glow {
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.35), transparent 70%);
  filter: blur(60px);
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
  0%,100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 12px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 40px;
  display: inline-block;
  backdrop-filter: blur(20px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px var(--gold-glow);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.2);
}
.hero-card-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(245,158,11,0.2));
  pointer-events: none;
}
.hero-card-badge {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 16px;
  background: var(--premium-blend);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 24px rgba(220,38,38,0.4);
}

@keyframes floatCard {
  0%,100% { transform: translateY(0) rotateY(0); }
  50% { transform: translateY(-12px) rotateY(2deg); }
}

.hero-floating-tag {
  position: absolute;
  padding: 10px 18px;
  background: rgba(15,10,7,0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: floatTag 5s ease-in-out infinite;
}
.tag-1 { top: 15%; left: -10%; }
.tag-2 { bottom: 18%; right: -8%; animation-delay: 2s; }
@keyframes floatTag {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--text-secondary); font-size: 1.05rem; }

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
  padding: 130px 0;
  position: relative;
}

.game-container {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(32px);
  box-shadow: var(--glass-shadow), 0 40px 100px rgba(0,0,0,0.4);
  overflow: hidden;
  position: relative;
}
.game-container::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(245,158,11,0.5), transparent 40%, transparent 60%, rgba(220,38,38,0.4));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

.game-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 16px;
}
.game-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.game-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--premium-blend);
  border-radius: 14px;
  font-size: 1.5rem;
  box-shadow: 0 0 24px var(--gold-glow);
}
.game-title h3 { font-size: 1.3rem; margin-bottom: 2px; }
.game-title small { color: var(--text-muted); font-size: 0.82rem; }

.game-controls { display: flex; gap: 10px; }
.ctrl-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.ctrl-btn:hover {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.5);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.game-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  position: relative;
}
.game-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 28px;
  border-top: 1px solid var(--glass-border);
  gap: 16px;
}
.game-meta div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.game-meta strong {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.game-meta span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
}

/* HOW TO PLAY */
.how-to-play {
  margin-top: 100px;
  text-align: center;
}
.how-to-play h2 { margin-bottom: 50px; }
.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.howto-card {
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  text-align: left;
  transition: all 0.4s ease;
}
.howto-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 16px 48px rgba(245,158,11,0.15);
}
.howto-card h3 { margin: 16px 0 10px; font-size: 1.1rem; }
.howto-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* ============================================
   FEATURES
   ============================================ */
.features { padding: 130px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 30px;
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 2px;
  background: var(--gold-grad);
  transition: left 0.6s ease;
}
.feature-card:hover::before { left: 0; }
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 20px 50px rgba(245,158,11,0.18);
}
.feature-card.large {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}
.feature-card.large img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.feature-card.large .feature-body { padding: 30px; }
.feature-card.wide {
  grid-column: span 2;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feature-card.wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card.wide .feature-body { padding: 36px; align-self: center; }

.feature-icon {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--bronze-grad);
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px var(--bronze-glow);
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================
   STATS
   ============================================ */
.stats { padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-card {
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.4);
}
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-card span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ============================================
   LORE CTA
   ============================================ */
.lore-cta { padding: 130px 0; }
.lore-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lore-flex.reverse { direction: rtl; }
.lore-flex.reverse > * { direction: ltr; }

.lore-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 40px var(--gold-glow);
  height: 480px;
  object-fit: cover;
  filter: contrast(1.1);
}
.lore-content h2 { margin-bottom: 22px; }
.lore-content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 110px 0 70px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(245,158,11,0.15), transparent 60%),
    linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  border-bottom: 1px solid var(--glass-border);
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { color: var(--text-secondary); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================
   REWARDS
   ============================================ */
.rewards-section { padding: 100px 0 130px; }
.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reward-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
}
.reward-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.reward-card:hover img { transform: scale(1.08); }
.reward-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(245,158,11,0.2);
  border-color: rgba(245,158,11,0.4);
}
.reward-card h3 { padding: 20px 24px 8px; font-size: 1.2rem; }
.reward-card p { padding: 0 24px 22px; color: var(--text-secondary); font-size: 0.93rem; }
.reward-tag {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  background: var(--premium-blend);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(220,38,38,0.4);
}

/* ============================================
   LORE / VALUES
   ============================================ */
.lore-section { padding: 80px 0 130px; }
.lore-section .lore-flex { margin-bottom: 100px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.value-card {
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 16px 40px rgba(245,158,11,0.15);
}
.value-card h3 { margin: 14px 0 10px; font-size: 1.15rem; }
.value-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: 80px 0 130px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}
.contact-details strong {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.contact-details span { color: var(--text-primary); }

.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section { padding: 70px 0 130px; }
.legal-content {
  max-width: 880px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px;
  backdrop-filter: blur(24px);
  box-shadow: var(--glass-shadow);
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--text-primary);
  position: relative;
  padding-left: 18px;
}
.legal-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--gold-grad);
  border-radius: 2px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin: 22px 0 10px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
}
.legal-content p, .legal-content li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 12px;
  line-height: 1.75;
}
.legal-content ul { padding-left: 24px; margin-bottom: 18px; }
.legal-content li { list-style: disc; margin-bottom: 8px; }
.legal-content strong { color: var(--text-primary); }
.legal-content a { color: #fcd34d; text-decoration: underline; }
.legal-note {
  margin-top: 40px;
  padding: 20px;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  border-top: 2px solid;
  border-image: var(--gold-grad) 1;
  padding: 80px 0 30px;
  margin-top: 80px;
  position: relative;
  backdrop-filter: blur(20px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo { margin-bottom: 18px; }
.footer-about { color: var(--text-secondary); font-size: 0.95rem; max-width: 320px; }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--text-primary);
}
.site-footer ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer ul a, .contact-list li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color 0.3s ease;
}
.site-footer ul a:hover { color: #fcd34d; }
.contact-list li { line-height: 1.55; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ============================================
   ANIMATIONS — reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-card img { height: 440px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.large, .feature-card.wide { grid-column: span 2; grid-row: auto; }
  .feature-card.wide { grid-template-columns: 1fr; }
  .reward-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container, .header-inner, .hero-container { padding-left: 22px; padding-right: 22px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(8,5,3,0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(245,158,11,0.25);
    padding: 14px;
  }
  .main-nav.open ul {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 2px;
    clip-path: none;
  }
  .main-nav.open a {
    padding: 12px 16px;
    font-size: 0.78rem;
  }
  .game-section, .features, .lore-cta, .lore-section, .rewards-section, .contact-section, .legal-section {
    padding: 70px 0;
  }
  .lore-flex { grid-template-columns: 1fr; gap: 40px; }
  .lore-flex.reverse { direction: ltr; }
  .lore-image img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .legal-content { padding: 36px 24px; }
  .game-meta { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 50px 0; min-height: auto; }
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.large, .feature-card.wide { grid-column: span 1; }
  .reward-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-floating-tag.tag-1 { left: 0; top: 8%; }
  .hero-floating-tag.tag-2 { right: 0; bottom: 10%; }
  .btn-lg { padding: 16px 28px; font-size: 0.92rem; }
  .game-toolbar { padding: 18px; }
  .game-meta { padding: 18px; }
  .logo-text { font-size: 0.88rem; }
  .logo-text small { font-size: 0.52rem; }
}