/* ==========================================================================
   XELTA PLAY : CYBERPUNK STUDIO DESIGN SYSTEM & STYLES (2026)
   Exact replication of the Cyberpunk Studio aesthetic
   ========================================================================== */

:root {
  /* Obsidian Cyber Palette */
  --bg-deep: #05020c;
  --bg-surface: #0d081c;
  --bg-card: rgba(22, 13, 46, 0.65);
  --bg-card-hover: rgba(35, 19, 74, 0.8);
  --bg-glass: rgba(18, 11, 38, 0.85);

  /* Neon Accents */
  --purple-primary: #a855f7;
  --purple-glow: #c084fc;
  --purple-dark: #6b21a8;
  --magenta-neon: #d946ef;
  --cyan-neon: #00f0ff;
  --blue-neon: #3b82f6;
  --green-neon: #22c55e;
  --orange-neon: #f97316;
  --red-neon: #ef4444;

  /* Text & Borders */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-subtle: rgba(168, 85, 247, 0.25);
  --border-glow: rgba(168, 85, 247, 0.6);
  --border-bright: #c084fc;

  /* Shadows */
  --shadow-purple: 0 0 30px rgba(168, 85, 247, 0.35);
  --shadow-purple-strong: 0 0 45px rgba(192, 132, 252, 0.6);
  --shadow-cyan: 0 0 25px rgba(0, 240, 255, 0.4);
  
  /* Layout */
  --nav-height: 84px;
  --container-max: 1380px;
}

/* --- RESET & BASIC SETUP --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* --- AMBIENT BACKGROUND GLOW --- */
.cyber-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, #1a0b36 0%, var(--bg-deep) 75%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-purple {
  top: -10%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: var(--purple-primary);
}

.orb-indigo {
  bottom: 10%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: #4f46e5;
  animation-delay: -5s;
}

.orb-cyan {
  top: 40%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: var(--cyan-neon);
  opacity: 0.2;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 80px) scale(1.15); }
  100% { transform: translate(60px, -40px) scale(0.9); }
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

/* --- UTILITY TYPOGRAPHY --- */
.purple-gradient {
  background: linear-gradient(135deg, #f8fafc 0%, var(--purple-glow) 50%, var(--magenta-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 40px rgba(192, 132, 252, 0.4);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.pill-cyan {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--cyan-neon);
  color: var(--cyan-neon);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.pill-purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--purple-primary);
  color: #e9d5ff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-main-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-sub-title {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* --- HEADER / NAVBAR (Screenshot 1 Style) --- */
#main-header {
  position: sticky;
  top: 20px;
  z-index: 1000;
  padding: 0 24px;
}

.navbar {
  max-width: var(--container-max);
  margin: 0 auto;
  height: var(--nav-height);
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.8));
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: rotate(10deg) scale(1.1);
}

.glow-text-cyan {
  color: var(--cyan-neon);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.7);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-neon), var(--purple-primary));
  box-shadow: 0 0 10px var(--cyan-neon);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login-play {
  padding: 10px 24px;
  background: linear-gradient(135deg, #581c87 0%, #3b0764 100%);
  border: 1px solid rgba(168, 85, 247, 0.6);
  border-radius: 9999px;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(88, 28, 135, 0.5);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-login-play:hover {
  background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
  border-color: #c084fc;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.8);
  transform: translateY(-2px);
  color: #fff;
}

.btn-cart {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

.btn-cart:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: var(--purple-glow);
}

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--magenta-neon);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-surface);
  box-shadow: 0 0 10px var(--magenta-neon);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
}

/* --- HERO SECTION (Screenshot 2 Style) --- */
.hero-section {
  padding: 60px 24px 80px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: 650px;
}

.hero-left {
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-launch-portal {
  padding: 16px 36px;
  background: linear-gradient(135deg, #581c87 0%, #3b0764 100%);
  border: 1px solid rgba(168, 85, 247, 0.6);
  border-radius: 9999px;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-launch-portal:hover {
  background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
  border-color: #c084fc;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.9);
  transform: translateY(-3px);
  color: #fff;
}

.btn-explore-lineup {
  padding: 16px 36px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-explore-lineup:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
  color: #fff;
}

.trusted-by {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-partner {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.6;
  transition: 0.3s;
}

.logo-partner:hover {
  opacity: 1;
  color: #fff;
}

.font-cyber {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1em;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

/* Hero Right: Character & Floating Cards */
.hero-right {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-character-box {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: var(--shadow-purple);
}

.hero-char-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.char-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 40%),
    linear-gradient(90deg, var(--bg-deep) 0%, transparent 25%);
}

/* Floating UI Cards */
.float-card {
  position: absolute;
  background: rgba(18, 11, 38, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(168, 85, 247, 0.3);
  z-index: 5;
  transition: transform 0.3s ease;
}

.float-card:hover {
  transform: scale(1.05);
  border-color: var(--cyan-neon);
}

.card-players {
  top: 40px;
  right: -20px;
  min-width: 220px;
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.green-dot {
  background: var(--green-neon);
  box-shadow: 0 0 10px var(--green-neon);
  animation: pulseDot 2s infinite;
}

.small-dot {
  width: 8px;
  height: 8px;
  margin-left: 6px;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.avatar-stack, .avatar-stack-small {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface);
  margin-left: -10px;
  object-fit: cover;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.card-countdown {
  bottom: 40px;
  left: -30px;
  min-width: 260px;
  background: rgba(22, 13, 46, 0.9);
  border: 1px solid var(--purple-glow);
}

.countdown-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.time-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  min-width: 60px;
}

.time-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  line-height: 1;
}

.time-lbl {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.time-colon {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--purple-primary);
}

.card-ranked {
  bottom: 80px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trophy-icon {
  font-size: 1.8rem;
  background: rgba(249, 115, 22, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange-neon);
}

.ranked-text {
  display: flex;
  flex-direction: column;
}

.ranked-text strong {
  font-size: 0.95rem;
  color: #fff;
}

.ranked-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- STATS BANNER STRIP (Screenshot 1 Style) --- */
.stats-banner-section {
  padding: 0 24px 80px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.stats-banner-box {
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  border: 1.5px solid var(--purple-primary);
  border-radius: 24px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: var(--shadow-purple);
  flex-wrap: wrap;
  gap: 20px;
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan-neon);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

.stat-separator {
  color: var(--purple-glow);
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--purple-glow);
}

/* --- FEATURED GAMES SECTION: CHOOSE YOUR BATTLEGROUND (Screenshot 3 Style) --- */
.games-showcase-section {
  padding: 80px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.games-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.battle-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 340px;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.battle-card:hover, .featured-card {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-purple-strong);
  transform: translateY(-8px);
  background: var(--bg-card-hover);
}

.battle-img-box {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.battle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.battle-card:hover .battle-img {
  transform: scale(1.08);
}

.battle-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.badge-tag {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.badge-fps { background: rgba(59, 130, 246, 0.85); color: #fff; border: 1px solid #60a5fa; }
.badge-rpg { background: rgba(168, 85, 247, 0.85); color: #fff; border: 1px solid #c084fc; }
.badge-royale { background: rgba(16, 185, 129, 0.85); color: #fff; border: 1px solid #34d399; }
.badge-hot { background: var(--magenta-neon); color: #fff; border: 1px solid #f472b6; box-shadow: 0 0 15px var(--magenta-neon); }

.battle-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.battle-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.battle-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
}

.battle-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.live-players-box {
  display: none;
}

.avatar-stack-small img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--bg-card);
  margin-left: -8px;
  object-fit: cover;
}

.avatar-stack-small img:first-child {
  margin-left: 0;
}

.live-text {
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-play-now-pill {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--cyan-neon);
  border-radius: 9999px;
  color: var(--cyan-neon);
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.3s;
  display: block;
}

.btn-play-now-pill:hover {
  background: var(--cyan-neon);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

/* --- CHARACTERS SECTION: PICK YOUR FIGHTER (Screenshot 4 Style) --- */
.characters-section {
  padding: 80px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.fighters-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.fighter-card {
  background: linear-gradient(180deg, rgba(22, 13, 46, 0.7) 0%, rgba(13, 8, 28, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fighter-card:hover, .selected-fighter {
  border: 2px solid var(--border-bright);
  box-shadow: var(--shadow-purple-strong);
  transform: translateY(-10px);
}

.fighter-img-box {
  position: relative;
  height: 320px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.3), transparent 70%);
}

.fighter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.fighter-card:hover .fighter-img {
  transform: scale(1.1);
}

.class-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.pill-sniper { background: #3b82f6; color: #fff; }
.pill-tank { background: #f97316; color: #fff; }
.pill-assassin { background: #ef4444; color: #fff; }
.pill-hacker { background: #22c55e; color: #fff; }
.pill-brawler { background: #00f0ff; color: #000; }

.fighter-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fighter-name {
  font-size: 1.3rem;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
}

.fighter-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.f-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.f-stat span {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.f-stat strong {
  font-size: 0.85rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

.btn-select-fighter {
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.fighter-card:hover .btn-select-fighter, .selected-fighter .btn-select-fighter {
  background: linear-gradient(90deg, var(--purple-primary), var(--magenta-neon));
  border-color: transparent;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

/* --- UNIVERSE SECTION: ABOUT THE UNIVERSE (Screenshot 5 Style) --- */
.universe-section {
  padding: 80px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.universe-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 36px;
  padding: 50px;
  box-shadow: var(--shadow-purple);
}

.universe-media-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-player-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--purple-glow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(168, 85, 247, 0.3);
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-player-container:hover .video-poster {
  transform: scale(1.05);
}

.video-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.3), rgba(5, 2, 12, 0.7));
}

.carousel-nav {
  position: absolute;
  top: 45%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 5;
}

.nav-prev { left: -22px; }
.nav-next { right: -22px; }

.carousel-nav:hover {
  background: var(--purple-primary);
  border-color: #fff;
}

.video-caption-pill {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Universe Right Lore */
.universe-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.lore-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.lore-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lore-line {
  width: 4px;
  min-height: 48px;
  background: linear-gradient(180deg, var(--purple-glow), var(--magenta-neon));
  border-radius: 4px;
  box-shadow: 0 0 10px var(--purple-glow);
}

.lore-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.lore-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.l-stat {
  display: flex;
  flex-direction: column;
}

.l-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.l-lbl {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.lore-actions {
  display: flex;
  gap: 20px;
}

.btn-our-story {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--purple-primary), var(--magenta-neon));
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
}

.btn-our-story:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.8);
}

.btn-meet-team {
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid var(--cyan-neon);
  border-radius: 9999px;
  color: var(--cyan-neon);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-meet-team:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* --- FOOTER SECTION --- */
.cyber-footer {
  background: #030108;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 5%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Modal CSS removed */

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
  .fighters-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .universe-container {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 36px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .trusted-by {
    justify-content: center;
    flex-direction: column;
  }
  .hero-right {
    height: 480px;
    margin-top: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links, .btn-play-now {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .section-main-title, .universe-title {
    font-size: 2.2rem;
  }
  .fighters-grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .stats-banner-box {
    flex-direction: column;
    gap: 30px;
  }
  .stat-separator {
    display: none;
  }
  .float-card {
    position: static;
    margin-bottom: 12px;
    width: 100%;
  }
  .hero-right {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .hero-character-box {
    position: relative;
    height: 360px;
    margin-bottom: 20px;
  }
}
