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

html, body {
  height: 100%;
}

body.site {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #10152e 0%, #050714 45%, #01020a 100%);
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #27C4FF;
  margin-bottom: 0.75rem;
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(5, 7, 20, 0.92), rgba(5, 7, 20, 0.75));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FF6A2C;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9CA3AF;
}

.menu {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.menu a {
  position: relative;
  padding-block: 0.25rem;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6A2C, #27C4FF);
  transition: width 0.2s ease-out;
}

.menu a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  padding-top: 5rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.hero-left h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.hero-left h2 {
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 32rem;
  color: #9CA3AF;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6A2C, #FF9966);
  box-shadow: 0 0 28px rgba(255, 106, 44, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(255, 106, 44, 0.85);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: #050714;
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  background: #0b0f2b;
}

.btn.center {
  margin: 2rem auto 0;
  display: flex;
}

/* HERO RIGHT CARD */

.hero-right {
  display: flex;
  justify-content: center;
}

.featured-card {
  width: 100%;
  max-width: 360px;
  padding: 1.5rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top left, rgba(255, 106, 44, 0.15), transparent 40%),
              radial-gradient(circle at bottom right, rgba(39, 196, 255, 0.18), transparent 45%),
              rgba(9, 11, 28, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.featured-card .label {
  text-align: center;
}

.featured-card .game-thumb {
  height: 160px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background-size: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(5, 7, 20, 0.88);
  font-weight: 700;
}

.featured-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: center;
}

.featured-card p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
  text-align: center;
}

.featured-card .game-thumb {
  display: flex;
  justify-content: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.tags span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e7eb;
}

/* MISSION */

.mission {
  background: radial-gradient(circle at top, rgba(39, 196, 255, 0.07), transparent 55%);
}

.mission h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.pillar {
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.45));
}

.pillar h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.9rem;
  color: #d1d5db;
}

/* GAMES */

.games-preview {
  background: radial-gradient(circle at bottom, rgba(255, 106, 44, 0.08), transparent 52%);
}

.games-preview h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.game-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.55));
  padding: 1.3rem;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 106, 44, 0.7);
}

.game-card .thumb {
  height: 140px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background-image: linear-gradient(135deg, rgba(255, 106, 44, 0.3), rgba(39, 196, 255, 0.3));
}

.game-card h3 {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.game-card p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

/* ABOUT */

.about-teaser {
  background: radial-gradient(circle at top right, rgba(39, 196, 255, 0.08), transparent 60%);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.about-left h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about-left p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.about-left ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about-left li {
  font-size: 0.95rem;
}

.about-left strong {
  color: #FF6A2C;
  font-weight: 700;
}

.about-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.stat-card {
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.55));
  font-size: 0.9rem;
  text-align: center;
}

/* CONTACT */

.contact-cta {
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at bottom, rgba(255, 106, 44, 0.12), transparent 55%);
}

.contact-inner {
  text-align: center;
}

.contact-inner h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.contact-inner p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.contact-meta {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #9CA3AF;
}

/* FOOTER */

.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: #02030b;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    order: -1;
  }
  .pillars {
    grid-template-columns: minmax(0, 1fr);
  }
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .menu {
    gap: 1rem;
    font-size: 0.75rem;
  }
  section {
    padding-inline: 1.1rem;
  }
  .games-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
