:root {
  --bg: #060512;
  --text: #f7f3ff;
  --muted: #b4acd4;
  --orange: #ff6b00;
  --orange-soft: #ff9b45;
  --cyan: #73e8ff;
  --violet: #9b7cff;
  --panel: rgba(25, 18, 58, 0.76);
  --line: rgba(154, 124, 255, 0.32);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 48px));
  min-height: 76px;
  margin: 18px auto 0;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.logo-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.brand-highlight {
  color: var(--orange);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 800;
  color: #e7e1ff;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--cyan);
}

.hamburger {
  display: none;
}

.game-site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 12%, rgba(115, 232, 255, 0.14), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(155, 124, 255, 0.24), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 107, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #070512 0%, #130b2a 52%, #080614 100%);
}

.game-site .navbar {
  border-color: rgba(115, 232, 255, 0.2);
}

.game-site .brand-highlight {
  color: var(--cyan);
}

.game-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  gap: 30px;
}

.game-hero:before {
  content: "";
  position: absolute;
  left: -70px;
  top: 130px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(115, 232, 255, 0.14);
  border-radius: 50%;
  filter: blur(0.2px);
}

.game-hero-copy {
  position: relative;
  z-index: 4;
}

.game-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.game-hero h1 {
  max-width: 600px;
  margin: 0 0 26px;
  font-family: var(--font-heading);
  font-size: clamp(3.3rem, 6vw, 5.7rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 34px rgba(115, 232, 255, 0.22);
}

.game-hero-copy p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.game-showcase {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-showcase:before {
  content: "";
  position: absolute;
  inset: 100px 0 70px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(115, 232, 255, 0.22), rgba(155, 124, 255, 0.12) 45%, transparent 68%);
  filter: blur(28px);
}

.phone-shot {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(184, 164, 255, 0.32);
  border-radius: 28px;
  overflow: hidden;
  background: #0b091a;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(115, 232, 255, 0.14);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-main {
  z-index: 3;
  width: min(330px, 45vw);
  aspect-ratio: 1170 / 2532;
}

.shot-side {
  z-index: 2;
  width: min(250px, 34vw);
  aspect-ratio: 1170 / 2532;
  opacity: 0.78;
  filter: saturate(0.95) brightness(0.82);
}

.shot-left {
  left: 16px;
  transform: rotate(-8deg) translateY(28px);
}

.shot-right {
  right: 8px;
  transform: rotate(8deg) translateY(44px);
}

.game-content {
  width: min(920px, calc(100% - 48px));
  margin: -18px auto 90px;
  padding: 34px;
  border: 1px solid rgba(115, 232, 255, 0.18);
  border-radius: 28px;
  background: rgba(14, 10, 34, 0.62);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.game-content h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: #fff;
}

.game-content p {
  max-width: 760px;
  margin: 0;
}

.game-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.game-feature-list span {
  padding: 10px 14px;
  border: 1px solid rgba(115, 232, 255, 0.18);
  border-radius: 999px;
  color: #dcd5ff;
  background: rgba(115, 232, 255, 0.07);
}

.simple-policy {
  width: min(920px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto;
  padding: 84px 0 90px;
}

.simple-policy h1 {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
}

.simple-policy h2 {
  margin: 42px 0 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.25;
  color: #fff;
}

.simple-policy p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.simple-policy a {
  color: var(--cyan);
  font-weight: 700;
}

.simple-policy ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.simple-policy li {
  margin-bottom: 6px;
}

.policy-updated {
  display: inline-flex;
  margin-bottom: 18px !important;
  padding: 8px 12px;
  border: 1px solid rgba(115, 232, 255, 0.18);
  border-radius: 999px;
  background: rgba(115, 232, 255, 0.06);
  color: var(--cyan) !important;
  font-size: 0.88rem;
  font-weight: 800;
}

.simple-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 32px;
  padding: 42px 0 0;
  border-top: 1px solid rgba(255, 107, 0, 0.24);
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 30px;
  color: #f7f3ff;
}

.simple-footer a {
  color: #e7e1ff;
}

.simple-footer a:hover {
  color: var(--cyan);
}

.simple-footer h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.simple-footer p {
  margin: 10px 0 0;
  color: var(--muted);
}

.simple-footer .footer-address {
  line-height: 1.65;
}

.simple-footer-brand .logo-premium {
  justify-content: flex-start;
}

.simple-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .navbar {
    width: min(100% - 28px, 1120px);
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    gap: 16px;
  }

  .logo-premium {
    font-size: 1.18rem;
  }

  .nav-menu {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .game-hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1120px);
    min-height: auto;
    padding: 70px 0 30px;
  }

  .game-hero h1 {
    text-align: center;
    max-width: none;
  }

  .game-hero-copy {
    text-align: center;
  }

  .game-hero-copy p {
    margin: 0 auto;
  }

  .game-showcase {
    min-height: 540px;
  }

  .shot-main {
    width: min(280px, 62vw);
  }

  .shot-side {
    width: min(190px, 42vw);
  }

  .shot-left {
    left: 0;
  }

  .shot-right {
    right: 0;
  }

  .game-content,
  .simple-policy,
  .simple-footer {
    width: min(100% - 28px, 1120px);
  }

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

  .simple-footer-bottom {
    display: block;
  }
}
