:root {
  --bg: #090b10;
  --panel: #121722;
  --panel-soft: #161d2b;
  --text: #edf2ff;
  --muted: #b5bfd4;
  --accent: #ff4d6d;
  --accent-hover: #ff6f89;
  --outline: #2a3347;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at 20% 0%, #1a2237 0, var(--bg) 45%);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  margin-bottom: 1rem;
}

.lead {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 0.7rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff7f50);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), #ff916b);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--outline);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: #3f4d69;
}

.btn-wide {
  margin-top: 0.8rem;
}

.section {
  padding: 1.6rem 0 3rem;
}

.section h2 {
  margin-bottom: 0.8rem;
}

.section-intro {
  margin-top: 0;
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
  border: 1px solid var(--outline);
  border-radius: 0.95rem;
  overflow: hidden;
  padding-bottom: 1rem;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card h3,
.card p,
.card-link {
  margin-left: 0.9rem;
  margin-right: 0.9rem;
}

.card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.55rem;
}

.card p {
  margin-top: 0;
  color: var(--muted);
  min-height: 74px;
}

.card-link {
  margin-top: 0.25rem;
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  background: #293249;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
}

.card-link:hover {
  background: #374563;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid #1f2738;
  border-bottom: 1px solid #1f2738;
}

.article p {
  margin-top: 0;
  color: var(--muted);
}

.footer {
  padding: 2rem 0 2.6rem;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  padding: 1rem;
}

.footer-wrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0.8rem;
}

.footer p {
  margin: 0 0 0.6rem;
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --bg: #12051f;
  --bg-soft: #1b0b2f;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --text: #f5edff;
  --muted: #d2c2ea;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ffbf37;
  --accent-strong: #ff8c1a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 191, 55, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(143, 86, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #12051f 0%, #19092b 45%, #10041a 100%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(10, 2, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #2b0a00;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.nav a:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #241000;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(255, 141, 26, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 20px 44px rgba(255, 141, 26, 0.42);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button-secondary:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.06);
}

.button-full {
  width: 100%;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid,
.steps-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.steps-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.04;
}

.section-heading h2,
.steps-grid h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero-text,
.section-heading p,
.info-card p,
.game-card p,
.step-item p,
.faq-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.hero-image-card,
.info-card,
.game-card,
.faq-card,
.steps-list,
.section-alt .section-heading,
.section .section-heading {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-image-card {
  overflow: hidden;
  border-radius: 32px;
}

.hero-image-card img {
  min-height: 100%;
  object-fit: cover;
}

.section {
  padding: 40px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.025);
}

.section-heading {
  margin-bottom: 24px;
  padding: 28px;
  border-radius: var(--radius);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.info-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius);
}

.info-card h3,
.game-card h3,
.faq-card h3,
.step-item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.game-card {
  overflow: hidden;
  border-radius: 28px;
}

.game-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.game-card-body {
  padding: 20px;
}

.steps-list {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
}

.step-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
}

.step-item span {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 191, 55, 0.22), rgba(255, 140, 26, 0.22));
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
}

.site-footer {
  padding: 30px 0 110px;
  border-top: 1px solid var(--line);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #241000;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(255, 141, 26, 0.35);
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .steps-grid,
  .cards-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-text small {
    display: none;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section,
  .site-footer {
    padding-top: 28px;
  }

  .step-item {
    grid-template-columns: 1fr;
  }

  .step-item span {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
}
