:root {
  color-scheme: dark;
  --bg-gradient: radial-gradient(circle at top left, #4d1f6d, #1b0a2a);
  --surface: rgba(32, 8, 48, 0.85);
  --surface-strong: rgba(16, 4, 24, 0.95);
  --accent: #9d36ff;
  --accent-strong: #ff4df2;
  --text: #f7edff;
  --text-muted: rgba(247, 237, 255, 0.72);
  --shadow: 0 20px 40px rgba(24, 3, 45, 0.45);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--bg-gradient);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    120deg,
    rgba(77, 31, 109, 0.88),
    rgba(27, 10, 42, 0.94)
  );
  box-shadow: var(--shadow);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 18px rgba(157, 54, 255, 0.6));
}

.brand-text {
  display: grid;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.28em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.2s ease;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.cta-button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(
    120deg,
    var(--accent),
    var(--accent-strong),
    #ff7b42
  );
  box-shadow: 0 0 24px rgba(255, 77, 242, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button::after {
  content: "→";
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 34px rgba(255, 77, 242, 0.6);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  padding: clamp(72px, 12vh, 140px) 0 60px;
  display: grid;
  gap: 38px;
}

.hero-card {
  padding: clamp(32px, 6vw, 64px);
  background: var(--surface);
  border-radius: clamp(20px, 5vw, 36px);
  box-shadow: var(--shadow);
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-strong);
  background: rgba(255, 77, 242, 0.08);
  border-radius: 999px;
  padding: 10px 18px;
  width: fit-content;
  box-shadow: inset 0 0 12px rgba(255, 77, 242, 0.4);
}

.hero h1 {
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.1;
  margin: 0;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--accent-strong), #ff7b42);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin: 0;
  font-size: clamp(1.05rem, 3.6vw, 1.4rem);
  color: var(--text-muted);
  max-width: 620px;
}

.hero-bonus {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(16, 4, 24, 0.9);
  border: 1px solid rgba(157, 54, 255, 0.24);
}

.hero-bonus strong {
  font-size: clamp(1.35rem, 4.6vw, 2.1rem);
  color: var(--accent-strong);
}

/* hero stats removed */

.section {
  padding: 36px 0 90px;
  display: grid;
  gap: 34px;
}

.section-header {
  display: grid;
  gap: 8px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-subtitle {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 640px;
}

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

.info-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(157, 54, 255, 0.18);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.info-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.game-screenshot {
  display: block;
  position: relative;
  min-height: clamp(220px, 40vw, 360px);
  border-radius: 28px;
  border: 2px dashed rgba(157, 54, 255, 0.35);
  background: linear-gradient(135deg, rgba(157, 54, 255, 0.08), rgba(255, 77, 242, 0.12));
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  margin-top: 12px;
}

.game-screenshot:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(24, 3, 45, 0.55);
  border-color: rgba(255, 77, 242, 0.65);
}

.screenshot-note {
  font-size: 1.05rem;
  color: var(--text-muted);
  display: grid;
  gap: 10px;
}

.screenshot-note code {
  background: rgba(27, 10, 42, 0.6);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--accent-strong);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(255, 77, 242, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 12px rgba(255, 77, 242, 0.3);
  width: fit-content;
}

.step-list {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  gap: 8px;
  background: var(--surface-strong);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(157, 54, 255, 0.18);
}

.step strong {
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
}

.list-label {
  font-weight: 600;
  color: var(--accent-strong);
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

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

.payment-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(157, 54, 255, 0.16);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.payment-card span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(157, 54, 255, 0.16);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.contact-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(157, 54, 255, 0.16);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(157, 54, 255, 0.18);
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255, 77, 242, 0.4);
}

.footer {
  background: rgba(16, 4, 24, 0.95);
  padding: 28px 0 40px;
  border-top: 1px solid rgba(157, 54, 255, 0.2);
}

.footer-content {
  display: grid;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent-strong);
}

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

  .container {
    padding-bottom: 56px;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-card {
    padding: clamp(24px, 6vw, 42px);
  }
}

