/* ==== BASIC RESET ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #040509;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ==== HEADER ==== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(5, 5, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mascot {
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.78rem;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==== HERO ==== */
.hero {
  padding: 4rem 1.5rem 3rem;
  background: radial-gradient(circle at top, #151623, #040509);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero-text p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #ff2f4f, #ff7a32);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-media {
  text-align: center;
}

.hero-media iframe,
.hero-media video,
.hero-media img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 1rem;
}

/* ==== GENERIC SECTIONS ==== */
.section {
  padding: 3.5rem 1.5rem;
}

.section-dark {
  background: #050509;
}

.section-light {
  background: #0c0e16;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  opacity: 0.92;
}

/* simple grids */
.feature-grid,
.card-grid,
.game-details,
.timeline,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

/* cards */
.feature-card,
.card,
.timeline-item,
.about-card {
  padding: 1.25rem;
  border-radius: 0.9rem;
  background: #161625;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 47, 79, 0.14);
  color: #ff8a9b;
  margin-bottom: 0.4rem;
}

.text-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #ff6b7a;
}

/* contact */
.contact-mascot {
  text-align: center;
}

.contact-mascot img {
  max-width: 180px;
  margin: 0 auto;
  border-radius: 1rem;
}

/* footer */
.site-footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #040509;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.6rem 0.9rem;
    flex-wrap: wrap;
  }

  .logo-mascot {
    width: 42px;
    height: 42px;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-sub {
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.4rem;
    gap: 0.4rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .section {
    padding: 3rem 1.1rem;
  }

  .feature-grid,
  .card-grid,
  .game-details,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}