:root {
  --surface: #170721;
  --surface-low: #1d0b29;
  --surface-highest: #331c42;
  --surface-variant: rgba(51, 28, 66, 0.4);
  --primary: #d394ff;
  --primary-dim: #aa30fa;
  --secondary: #ff51fa;
  --tertiary: #8ff5ff;
  --text: #f5ddff;
  --muted: #baa3c6;
  --ghost: rgba(84, 65, 95, 0.15);
  --bg-body: #0d0118;
  --radius: 32px;
  --radius-xl: 48px;
  --container: 1280px;
  --gradient-main: linear-gradient(45deg, #d394ff, #ff51fa);
  --shadow-neon: 0 20px 80px rgba(170, 48, 250, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gameoo-body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

h1, h2, h3, .brand, .footer-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.announcement-bar {
  background: #cb80ff;
  color: #39005c;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  position: relative;
  z-index: 30;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(23, 7, 33, 0.8);
}

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

.brand {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
}

.site-main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}

.hero-copy p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-variant);
  backdrop-filter: blur(16px);
  border: 1px solid var(--ghost);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--tertiary);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--tertiary);
  box-shadow: 0 0 20px var(--tertiary);
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  transition: .25s ease;
}

.btn-primary {
  background: var(--gradient-main);
  color: #4a0076;
  box-shadow: 0 0 20px rgba(211, 148, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(211, 148, 255, 0.45);
}

.btn-secondary {
  background: rgba(51, 28, 66, 0.4);
  border: 1px solid var(--ghost);
  backdrop-filter: blur(16px);
  color: var(--text);
}

.btn-secondary:hover {
  background: #2c163a;
}

.btn-sm {
  min-height: 46px;
  padding: 0 22px;
}

.hero-visual {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-radius: 40px;
  padding: 24px;
  border: 1px solid var(--ghost);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-neon);
}

.hero-visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-left {
  width: 500px;
  height: 500px;
  left: -180px;
  top: 120px;
  background: rgba(211, 148, 255, 0.18);
}

.hero-glow-right {
  width: 620px;
  height: 620px;
  right: -160px;
  bottom: -40px;
  background: rgba(255, 81, 250, 0.14);
}

.section {
  padding: 110px 0;
  background: var(--surface);
}

.section-alt {
  background: var(--surface-low);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 32px;
  letter-spacing: -0.03em;
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card,
.pricing-card,
.faq-item {
  background: #331c42;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--ghost);
  box-shadow: var(--shadow-neon);
}

.featured {
  position: relative;
  background: linear-gradient(180deg, rgba(51,28,66,.95), rgba(44,22,58,.95));
}

.badge-top {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(143, 245, 255, 0.16);
  color: var(--tertiary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

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

.site-footer {
  background: var(--surface-low);
  padding: 48px 0 64px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

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

  .main-nav {
    display: none;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 820px;
  background: #331c42;
  border-radius: 32px;
  padding: 48px 32px;
  border: 1px solid rgba(84, 65, 95, 0.15);
  box-shadow: 0 20px 80px rgba(170, 48, 250, 0.15);
}

.contact-card h2 {
  margin: 0 0 16px;
}

.contact-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}