/* === CSS RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #3b82f6; /* Neon Blue/Portal */
  --accent-glow: rgba(59, 130, 246, 0.5);
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glass: 0 8px 32px 0 rgba(0,0,0,0.4);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --section-padding: 100px;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .game-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

/* === NAVIGATION === */
.master-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-top-bar {
  background: rgba(59, 130, 246, 0.05);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
}

.nav-bottom-bar {
  padding: 15px 0;
}

.nav-bottom-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 15px var(--accent-glow);
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

/* === HERO SECTION === */
.battle-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.gradient-title {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 300;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  margin-bottom: 40px;
  font-weight: 600;
  color: #fbbf24;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px var(--accent);
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* === GALLERY SLIDER === */
.slider-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(to bottom, #0a0a0a, #111);
}

.slider-container {
  position: relative;
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  perspective: 1000px;
}

.screenshot-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.screenshot-img {
  max-height: 550px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 20px var(--accent-glow);
  border: 1px solid var(--glass-border);
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 140%;
  left: -20%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* === HOW IT WORKS === */
.path-to-victory {
  padding: var(--section-padding) 0;
  text-align: center;
}

.section-head {
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

.steps-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.step-card {
  flex: 0 1 250px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === FEATURES ZIGZAG === */
.features-zigzag {
  padding: var(--section-padding) 0;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 0 1 45%;
}

.feature-visual {
  flex: 0 1 55%;
  position: relative;
}

.feature-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mini-card {
  padding: 15px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.mini-card i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.visual-gradient {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.visual-gradient img {
  width: 80%;
  height: 120%;
  object-fit: cover;
  transform: rotate(-10deg) translateY(10%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* === STATS SECTION === */
.battle-records {
  padding: 80px 0;
  background: rgba(59, 130, 246, 0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.stat-label {
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* === REVIEWS === */
.player-voices {
  padding: var(--section-padding) 0;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.featured-review {
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 0 30px var(--accent-glow);
}

.quotes-icon {
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 30px;
}

.star-rating {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.review-text {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  font-weight: 700;
  color: #fff;
}

.supporting-reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-mini {
  padding: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

/* === DOWNLOAD CTA === */
.download-nexus {
  padding: var(--section-padding) 0;
  text-align: center;
  background: radial-gradient(circle at bottom, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}

.cta-stat-big {
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
  display: block;
}

.cta-title {
  font-size: 3.5rem;
  margin-bottom: 40px;
}

/* === FOOTER === */
.master-footer {
  padding: 80px 0 30px;
  background: #050505;
  border-top: 1px solid var(--glass-border);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-icon {
  margin-bottom: 20px;
}

.footer-motto {
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  color: #fff;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === GLASS PANEL ANIMATED BORDER === */
.glass-panel {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.glow-text {
  text-shadow: 0 0 15px var(--accent-glow);
}

/* === MOBILE RESPONSIBILITY === */
@media (max-width: 1024px) {
  .zigzag-row, .zigzag-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .feature-text, .feature-visual {
    flex: 0 1 100%;
  }

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

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav-links {
    display: none; /* Mobile menu needed */
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-motto {
    margin: 0 auto 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-stats {
    flex-direction: column;
    gap: 30px;
  }

  .steps-row::after {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

.nav-overlay.open {
  transform: translateY(0);
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  cursor: pointer;
}
