:root {
  --bg: #061428;
  --bg-alt: #0a1f3d;
  --surface: #0f2a52;
  --surface-2: #143566;
  --primary: #0273f5;
  --primary-light: #67c3f2;
  --accent: #04ffff;
  --green: #39b96f;
  --text: #e8f4ff;
  --muted: #8eb4d9;
  --border: rgba(103, 195, 242, 0.15);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Manrope", system-ui, sans-serif;
  --max: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1rem; }

.muted { color: var(--muted); }
.small { font-size: 0.875rem; }

.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section__intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* Age banner */
.age-banner {
  background: linear-gradient(90deg, #063468, #0273f5);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.age-banner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin-right: 0.5rem;
  font-weight: 800;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo img { height: 36px; width: auto; }

.nav {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--primary), #04a8ff);
  color: #fff;
  box-shadow: 0 8px 24px rgba(2, 115, 245, 0.35);
}
.btn--primary:hover { color: #fff; box-shadow: 0 12px 32px rgba(2, 115, 245, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--primary-light); color: var(--text); }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }

.logo--brand img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(2, 115, 245, 0.3));
}

/* Hero v2 */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 20, 40, 0.97) 42%, rgba(6, 20, 40, 0.75) 68%, rgba(6, 52, 104, 0.5) 100%),
    radial-gradient(circle at 80% 20%, rgba(2, 115, 245, 0.2), transparent 50%);
}

.hero__grid {
  position: relative;
  z-index: 1;
}

.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__promo {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.hero__promo--cash {
  top: 0;
  right: 10%;
  width: min(280px, 70%);
  z-index: 2;
}

.hero__promo--coins {
  bottom: 15%;
  left: 0;
  width: 120px;
  animation-delay: -2s;
  z-index: 3;
}

.hero__promo img {
  width: 100%;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}

.hero__stats-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(15, 42, 82, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero__license {
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Section head */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section__intro--flush { margin-bottom: 0; }

.section--games {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

/* Slots carousel */
.slots-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slots-carousel::-webkit-scrollbar { display: none; }

.slot-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 115, 245, 0.2);
  border-color: rgba(2, 115, 245, 0.4);
}

.slot-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.slot-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.slot-card:hover .slot-card__img img {
  transform: scale(1.06);
}

.slot-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.slot-card__badge--hot { background: #ff4757; color: #fff; }
.slot-card__badge--live { background: #e05a5a; color: #fff; animation: pulse 2s infinite; }
.slot-card__badge--crash { background: var(--green); color: #fff; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.slot-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.slot-card__body h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.slot-card__body p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.65rem;
}

.slot-card__play {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.providers {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.providers__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.providers__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.providers__list span {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

/* Bonus visual cards */
.bonus-card--visual {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.bonus-card__img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, rgba(2, 115, 245, 0.12) 0%, transparent 100%);
  padding: 1rem;
}

.bonus-card__content {
  padding: 0 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-card--visual .bonus-card__label {
  position: static;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.bonus-card--visual .btn { margin-top: auto; }

/* Games showcase */
.games-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.showcase-card:hover img { transform: scale(1.08); }

.showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 20, 40, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.showcase-card__overlay h3 { margin-bottom: 0.35rem; }
.showcase-card__overlay p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.feature-pill img {
  flex-shrink: 0;
  object-fit: contain;
}

.feature-pill strong {
  display: block;
  font-size: 0.95rem;
}

.feature-pill span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Payment logos */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-logos img {
  height: 36px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  object-fit: contain;
}


.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(57, 185, 111, 0.15);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(57, 185, 111, 0.3);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.stars { color: #ffc107; font-size: 1.25rem; letter-spacing: 2px; }
.stars .half { opacity: 0.45; }

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__tags li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero__card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.hero__card-stats div {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.hero__card-stats span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.hero__card-stats strong { font-size: 1.05rem; }

/* Facts */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.fact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.fact-card:hover { border-color: rgba(2, 115, 245, 0.4); }
.fact-card img { margin-bottom: 1rem; }
.fact-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pros, .cons {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid #e05a5a; }

.pros ul, .cons ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}
.pros li, .cons li { margin-bottom: 0.5rem; }

/* Bonuses */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

.bonus-card--featured {
  border-color: rgba(2, 115, 245, 0.5);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(2, 115, 245, 0.08) 100%);
}

.bonus-card__label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.bonus-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.5rem 0 1rem;
}

.bonus-card p { color: var(--muted); font-size: 0.95rem; }
.bonus-card .btn { margin-top: 1rem; width: 100%; }

.notice {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.92rem;
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s;
}
.game-card:hover { transform: translateY(-4px); }
.game-card__body { padding: 1.25rem; }
.game-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Payments */
.payments-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.payment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.payment-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.pill {
  display: inline-block;
  background: var(--surface-2);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  min-width: 72px;
  text-align: center;
}
.pill--crypto { background: rgba(57, 185, 111, 0.15); color: var(--green); }

.payment-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
}
.payment-table th, .payment-table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.payment-table th { color: var(--muted); font-weight: 600; font-size: 0.85rem; }
.payment-table td:last-child { font-weight: 700; }

.steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  counter-increment: step;
  position: relative;
  padding-top: 2.5rem;
}
.steps ol { counter-reset: step; }
.steps li::before {
  content: counter(step);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.steps strong { display: block; margin-bottom: 0.35rem; }
.steps span { color: var(--muted); font-size: 0.92rem; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
}
.review__stars { color: #ffc107; margin-bottom: 0.75rem; }
.review p { color: var(--muted); font-style: italic; }
.review footer { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }

/* FAQ */
.faq { max-width: 760px; }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq__item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary-light);
  transition: transform 0.2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  margin: 0;
}

/* CTA */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #063468 0%, #0273f5 100%);
}
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-section h2 { margin-bottom: 0.5rem; }
.cta-section p { margin: 0; opacity: 0.9; }

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo { margin-bottom: 1rem; opacity: 0.9; }
.footer h4 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li { margin-bottom: 0.4rem; }
.footer__links a { color: var(--muted); font-size: 0.9rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 360px; margin-top: 1rem; }
  .games-showcase { grid-template-columns: repeat(2, 1fr); }
  .features-row { grid-template-columns: 1fr; }
  .pros-cons, .payments-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .hero__promo--cash { right: 0; width: 65%; }
  .hero__stats-panel { flex-direction: column; text-align: center; }
  .hero__card-stats { grid-template-columns: 1fr 1fr; width: 100%; }
  .games-showcase { grid-template-columns: 1fr 1fr; }
  .slot-card { flex: 0 0 220px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-alt);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .header__cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header__inner { position: relative; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-section__inner { flex-direction: column; text-align: center; }
}

.footer__grid--4 { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.nav__active { color: var(--accent) !important; }

.page-hero {
  padding: 3rem 0 2.5rem;
  background: radial-gradient(ellipse 60% 80% at 90% 10%, rgba(2, 115, 245, 0.15), transparent), var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
.page-hero h1 span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero__lead { max-width: 680px; color: var(--muted); font-size: 1.05rem; margin: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.35rem; font-size: 0.85rem; margin-bottom: 1rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.bc-sep { opacity: 0.4; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding: 3rem 0 4rem; align-items: start; }
.content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--primary-light); }
.content p, .content li { color: var(--muted); line-height: 1.75; }
.content ul, .content ol { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.info-box { background: rgba(2,115,245,0.08); border: 1px solid rgba(2,115,245,0.25); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.info-box--warn { background: rgba(255,193,7,0.08); border-color: rgba(255,193,7,0.25); }
.content-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; }
.content-table th, .content-table td { padding: 0.85rem 1rem; border: 1px solid var(--border); text-align: left; }
.content-table th { background: var(--surface); color: var(--text); }
.content-table td { color: var(--muted); }
.step-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.step-list li { position: relative; padding: 1.25rem 1.25rem 1.25rem 4rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; counter-increment: steps; }
.step-list { counter-reset: steps; }
.step-list li::before { content: counter(steps); position: absolute; left: 1.25rem; top: 1.25rem; width: 32px; height: 32px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.step-list strong { display: block; color: var(--text); margin-bottom: 0.35rem; }
.sidebar { position: sticky; top: 90px; }
.sidebar__box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.sidebar__box ul { list-style: none; padding: 0; margin: 0; }
.sidebar__box a { font-size: 0.88rem; color: var(--muted); display: block; padding: 0.35rem 0; }
.sidebar__active, .sidebar__box a:hover { color: var(--accent) !important; }
.sidebar__box--cta { text-align: center; }
.game-hero-img { width: 100%; border-radius: var(--radius); margin: 1.5rem 0; border: 1px solid var(--border); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.5rem; }
.tag-row span { background: var(--surface); border: 1px solid var(--border); padding: 0.3rem 0.75rem; border-radius: 999px; font-size: 0.8rem; color: var(--muted); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.mini-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem; }
.mini-card strong { display: block; color: var(--accent); font-size: 1.2rem; }
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid--4 { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) { .footer__grid--4 { grid-template-columns: 1fr; } }
