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

:root {
  --bg: #08111f;
  --bg-soft: #0d1829;
  --panel: #111f34;
  --panel-2: #14253e;
  --text: #f6f8fb;
  --muted: #9fb0c5;
  --blue: #1f7bff;
  --cyan: #25b9ff;
  --border: rgba(255,255,255,.08);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 17, 31, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .95rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}

.nav-links a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 1.65rem;
  cursor: pointer;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .75rem;
  margin-bottom: 18px;
}

.hero h1,
.section-heading h2,
.about-section h2,
.cta-card h2,
.page-hero h1 {
  font-family: "Orbitron", sans-serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: -.045em;
}

.hero h1 span {
  background: linear-gradient(90deg, #ffffff, #54c8ff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.08rem;
  margin: 28px 0 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  transition: .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(31, 123, 255, .28);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
}

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

.logo-card {
  width: min(420px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(68,174,255,.28);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 20%, rgba(53,154,255,.18), transparent 42%),
    linear-gradient(180deg, #101f35, #0b1524);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  position: relative;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.05);
}

.hero-logo {
  width: 68%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.4));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .34;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  background: #006eff;
  right: 2%;
  top: 8%;
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  background: #00c3ff;
  left: -8%;
  bottom: -10%;
}

.games-section {
  padding: 110px 0;
  background: var(--bg-soft);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-section h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 16px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.game-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
  transition: .25s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46,173,255,.35);
}

.game-image-wrap {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.game-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-art {
  background:
    radial-gradient(circle at 50% 30%, rgba(46,173,255,.3), transparent 45%),
    linear-gradient(160deg, #17335c, #0a1424);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: .9rem;
  color: #a7dfff;
}

.game-tag {
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.game-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  margin: 7px 0 9px;
}

.game-content p {
  color: var(--muted);
  font-size: .94rem;
}

.text-link,
.coming-soon {
  display: inline-block;
  margin-top: 15px;
  color: #74d4ff;
  font-weight: 700;
  font-size: .9rem;
}

.about-section {
  padding: 110px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.about-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-copy p + p {
  margin-top: 18px;
}

.cta-section {
  padding: 0 0 110px;
}

.cta-card {
  padding: 50px;
  border-radius: 26px;
  border: 1px solid rgba(68,174,255,.2);
  background:
    radial-gradient(circle at 90% 10%, rgba(44,169,255,.18), transparent 30%),
    linear-gradient(145deg, #10233d, #0b1728);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 55px 0 30px;
  background: #060d17;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
}

.footer-grid p,
.legal {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  margin-top: 36px;
  padding-top: 24px;
  font-size: .8rem;
}

/* Secondary pages */
.page-hero {
  padding: 110px 0 60px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
}

.content-page {
  padding: 0 0 110px;
}

.content-card {
  max-width: 850px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 42px;
}

.content-card h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.35rem;
  margin: 32px 0 10px;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card ul {
  margin: 12px 0 0 20px;
}

.content-card a {
  color: #73d4ff;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    order: -1;
  }

  .logo-card {
    width: 290px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #08111f;
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid {
    padding: 62px 0 72px;
    gap: 44px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .game-card {
    grid-template-columns: 1fr;
  }

  .game-image-wrap {
    width: 110px;
    height: 110px;
    border-radius: 24px;
  }

  .cta-card {
    padding: 32px;
  }

  .footer-grid,
  .legal {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .content-card {
    padding: 28px;
  }
}
