:root {
  --bg: #0b1020;
  --bg-soft: #121a30;
  --panel: rgba(16, 24, 45, 0.88);
  --panel-strong: #111a31;
  --text: #eef2ff;
  --muted: #aab6d3;
  --line: rgba(255,255,255,0.08);
  --accent: #67b7ff;
  --accent-2: #8b5cf6;
  --success: #34d399;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(103,183,255,0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(139,92,246,0.18), transparent 28%),
    linear-gradient(180deg, #08101d 0%, #0d1528 55%, #0a1120 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(8, 14, 28, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: transparent;
  padding: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text-standalone {
  padding: 4px 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover { color: var(--text); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(103,183,255,0.3);
  background: rgba(103,183,255,0.1);
  color: var(--text) !important;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: #c8d4f0;
  font-size: 0.88rem;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--accent), #4f8dff);
  color: white;
  box-shadow: 0 12px 30px rgba(79,141,255,0.28);
}
.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.hero-card,
.card,
.legal-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.hero-card {
  padding: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  min-width: 0;
}

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

.stat-value {
  margin-top: 8px;
  font-size: 1.12rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section {
  padding: 28px 0 34px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

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

.card {
  padding: 24px;
}

.kicker {
  color: #8ec5ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.card h3 {
  margin: 10px 0 10px;
  font-size: 1.38rem;
}

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

.inline-links,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  font-weight: 600;
}

.store-chip-steam {
  background: linear-gradient(135deg, rgba(16,30,52,0.95), rgba(28,51,84,0.95));
  border-color: rgba(122, 169, 255, 0.22);
}

.list-clean {
  margin: 14px 0 0;
  padding-left: 18px;
}

.support-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 24px;
}

.featured-game-head {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
}

.featured-game-icon,
.game-icon,
.game-icon-large {
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
}

.featured-game-icon {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
}

.feature-showcase-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-icon-large {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.game-card {
  display: flex;
  flex-direction: column;
}

.game-icon {
  width: 88px;
  height: 88px;
  object-fit: cover;
  margin-bottom: 16px;
}

.compact {
  margin-top: 12px;
}

.section-head-spaced {
  margin-top: 34px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(7, 12, 22, 0.8);
}

.footer-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-shell {
  padding: 56px 0 80px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
}

.legal-meta {
  color: var(--muted);
  margin-bottom: 22px;
}

.legal-card h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.legal-card h2,
.legal-card .title2 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.legal-card p,
.legal-card li,
.legal-card ol {
  color: #d4def4;
}

.legal-card a { color: #99c9ff; }

.legal-card .title1,
.legal-card .title3,
.legal-card .date_modification_container,
.legal-card .left_line,
.legal-card .right_line {
  all: unset;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards-2,
  .support-box,
  .feature-showcase,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding: 14px 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 12px;
    width: 100%;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-card,
  .card,
  .legal-card {
    border-radius: 20px;
  }

  .legal-card {
    padding: 22px;
  }

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

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

  .featured-game-icon,
  .game-icon-large {
    width: 84px;
    height: 84px;
  }

  .feature-showcase-media {
    justify-content: flex-start;
  }

}
