@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #05070d;
  --bg-2: #09111d;
  --surface: rgba(12, 18, 31, 0.92);
  --surface-2: rgba(16, 24, 40, 0.95);
  --border: rgba(255, 255, 255, 0.09);
  --accent: #41f0c1;
  --accent-2: #ff9b5b;
  --accent-3: #7ce3ff;
  --text: #f4f7fb;
  --muted: #a0adbd;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(65, 240, 193, 0.15), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(255, 155, 91, 0.18), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(124, 227, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #0a1220 0%, var(--bg) 46%, #04050a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.08;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 14%,
    transparent 86%,
    rgba(255, 255, 255, 0.02) 100%
  );
  z-index: -1;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: -3;
}

.bg-glow-left {
  top: -220px;
  left: -180px;
  background: radial-gradient(circle, rgba(65, 240, 193, 0.35), transparent 62%);
}

.bg-glow-right {
  top: 120px;
  right: -180px;
  background: radial-gradient(circle, rgba(255, 155, 91, 0.28), transparent 60%);
}

h1,
h2,
h3,
.logo-text,
.eyebrow,
.cta,
.tag {
  font-family: "Orbitron", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 8, 16, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #02100b;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 24px rgba(65, 240, 193, 0.25);
}

.logo-text {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a,
.footer a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.24s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  color: #04110d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(65, 240, 193, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding: 82px 0 38px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  max-width: 11ch;
  margin-bottom: 18px;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  color: #04110d;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 22px rgba(65, 240, 193, 0.28);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  box-shadow: 0 0 30px rgba(65, 240, 193, 0.42);
}

.btn.ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: rgba(255, 155, 91, 0.55);
}

.btn.small {
  padding: 10px 16px;
  font-size: 0.92rem;
  width: fit-content;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  display: block;
  margin-bottom: 4px;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
}

.label {
  color: var(--muted);
  font-size: 0.85rem;
}

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

.status-card {
  width: min(100%, 440px);
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(16, 24, 40, 0.96), rgba(7, 10, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.status-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 240, 193, 0.18), transparent 62%);
  pointer-events: none;
}

.status-card h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.status-card p {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(65, 240, 193, 0.12);
  font-size: 0.75rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.chip {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  font-size: 0.78rem;
}

.card-btn {
  position: relative;
  z-index: 1;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.section-note {
  max-width: 460px;
  color: var(--muted);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(65, 240, 193, 0.34);
  background: var(--surface-2);
}

.game-card img {
  width: 100%;
  height: 250;
  object-fit: cover;
}

.game-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.game-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 155, 91, 0.16);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 700;
}

.game-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.featured {
  outline: 1px solid rgba(65, 240, 193, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.about-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.about-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
}

.about-card li::before {
  content: ">";
  margin-right: 8px;
  color: var(--accent);
}

.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .cta {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    padding: 22px;
  }
}
