:root {
  --bg: #120603;
  --bg-soft: #221008;
  --panel: rgba(53, 24, 10, 0.9);
  --panel-strong: rgba(72, 33, 12, 0.96);
  --line: rgba(255, 190, 84, 0.2);
  --amber: #ffab2e;
  --amber-soft: #ffcb6a;
  --foam: #fff6db;
  --text: #f9ead0;
  --muted: #d9b98b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 152, 42, 0.2), transparent 26%),
    radial-gradient(circle at bottom, rgba(91, 33, 8, 0.7), transparent 35%),
    linear-gradient(180deg, #1a0704 0%, #0b0301 60%, #070201 100%);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 8%, transparent 92%, rgba(0, 0, 0, 0.4)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0 2px, transparent 2px 180px);
  opacity: 0.6;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 40px;
}

.topbar,
.quick-strip,
.promo-marquee,
.section,
.footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(151, 83, 25, 0.95), rgba(88, 44, 12, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 24px, rgba(0, 0, 0, 0.03) 24px 48px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #311100;
  font-weight: 900;
  background: radial-gradient(circle at 30% 30%, #ffe09d, #ffab2e 62%, #cb6b13);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.4);
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.bonus-highlight h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.03em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1.2rem;
}

.brand-copy small {
  color: var(--foam);
  opacity: 0.78;
}

.main-nav,
.top-actions,
.hero-actions,
.quick-strip,
.category-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-nav a,
.footer-nav a {
  color: var(--foam);
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: var(--amber-soft);
}

.ghost-btn,
.cta-btn,
.tab-btn,
.quick-strip a,
.game-card a {
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ghost-btn,
.cta-btn {
  padding: 11px 18px;
  font-weight: 700;
}

.ghost-btn {
  color: var(--foam);
  border: 1px solid rgba(255, 227, 168, 0.22);
  background: rgba(42, 18, 7, 0.45);
}

.ghost-btn-light {
  background: rgba(255, 255, 255, 0.06);
}

.cta-btn {
  color: #3c1903;
  background: linear-gradient(180deg, #ffd36f, #ffab2e 52%, #d97712);
  box-shadow: 0 12px 24px rgba(255, 165, 38, 0.28);
}

.cta-btn-lg {
  padding-inline: 24px;
  padding-block: 14px;
}

.ghost-btn:hover,
.cta-btn:hover,
.tab-btn:hover,
.quick-strip a:hover,
.game-card a:hover {
  transform: translateY(-2px);
}

.hero,
.section,
.footer {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(34, 11, 5, 0.96), rgba(16, 6, 3, 0.98)),
    radial-gradient(circle at top right, rgba(255, 162, 53, 0.14), transparent 24%);
}

.promo-marquee {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(95, 34, 11, 0.96), rgba(55, 19, 8, 0.96));
}

.promo-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 12px 0;
  color: var(--amber-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: marquee 28s linear infinite;
}

.promo-track span::before {
  content: "•";
  margin-right: 12px;
  color: #fff2cc;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 42px;
  margin-top: 18px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 42px 0 42px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 170, 59, 0.4), transparent 72%);
  filter: blur(20px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.9rem);
  line-height: 0.95;
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.game-card p,
.benefit-card p,
.mini-panel p,
.info-card p,
.bonus-highlight p,
.faq-item p,
.responsible-note p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 62ch;
  margin: 18px 0 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-stats li,
.info-card,
.benefit-card,
.mini-panel,
.bonus-highlight,
.faq-item,
.game-card,
.editorial-card,
.cluster-card {
  border: 1px solid rgba(255, 196, 94, 0.14);
  background: linear-gradient(180deg, rgba(73, 31, 11, 0.72), rgba(32, 13, 6, 0.86));
}

.hero-stats li {
  padding: 14px;
  border-radius: 18px;
}

.hero-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 210, 120, 0.25);
  background: rgba(255, 183, 72, 0.08);
}

.hero-note strong {
  color: var(--amber-soft);
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--foam);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-art {
  position: relative;
  min-height: 460px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 174, 61, 0.32), transparent 30%),
    linear-gradient(180deg, rgba(77, 32, 11, 0.9), rgba(29, 10, 4, 0.96));
  border: 1px solid rgba(255, 194, 104, 0.12);
  overflow: hidden;
}

.tap-column {
  position: absolute;
  right: 38px;
  top: 38px;
  width: 94px;
  height: 290px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #f3bf59, #be6e1f 44%, #7a390c 100%);
  box-shadow: inset 0 0 0 8px rgba(255, 239, 198, 0.18);
}

.tap-column::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -92px;
  width: 26px;
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 212, 92, 0.9), rgba(255, 164, 34, 0.2));
  filter: blur(1px);
}

.slot-machine {
  position: absolute;
  left: 48px;
  bottom: 54px;
  display: grid;
  grid-template-columns: repeat(3, 86px);
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #913f18, #61230c);
  box-shadow: inset 0 0 0 2px rgba(255, 210, 107, 0.18);
}

.slot-machine span {
  display: grid;
  place-items: center;
  height: 108px;
  border-radius: 16px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  color: #381302;
  background: linear-gradient(180deg, #fff1cb, #f3cd82);
}

.beer-glow {
  position: absolute;
  inset: auto auto 42px 18px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 175, 48, 0.74), rgba(255, 175, 48, 0));
  filter: blur(18px);
}

.coin,
.mascot-badge {
  position: absolute;
}

.coin {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff3bf, #f4be49 60%, #b66a13);
  box-shadow: inset 0 0 0 6px rgba(255, 240, 200, 0.15);
}

.coin-a { top: 62px; left: 42px; }
.coin-b { top: 110px; left: 118px; width: 42px; height: 42px; }
.coin-c { top: 146px; left: 70px; width: 36px; height: 36px; }

.mascot-badge {
  right: 28px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #401703;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.2rem;
  background: radial-gradient(circle at 30% 30%, #ffe29f, #ff9d20 70%, #c65c0f);
}

.quick-strip {
  margin: 18px 0;
  padding: 14px 18px;
  border-radius: 18px;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(135, 73, 24, 0.92), rgba(84, 42, 12, 0.94));
}

.quick-strip a,
.tab-btn,
.game-card a {
  color: var(--foam);
  padding: 10px 16px;
  border: 1px solid rgba(255, 221, 164, 0.14);
  background: rgba(47, 17, 6, 0.44);
}

.tavern-shelf {
  padding: 22px 28px 28px;
}

.shelf-stage {
  position: relative;
  min-height: 160px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 7, 3, 0) 0%, rgba(18, 7, 3, 0.1) 30%, rgba(18, 7, 3, 0.55) 100%),
    linear-gradient(180deg, #5e2a10, #301108);
  overflow: hidden;
}

.shelf-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: linear-gradient(180deg, #7c3f18, #4a1d08);
  box-shadow: inset 0 3px 0 rgba(255, 220, 160, 0.12);
}

.snack,
.bottle-showcase {
  position: absolute;
  bottom: 28px;
}

.snack-cheese {
  left: 42px;
  width: 84px;
  height: 54px;
  border-radius: 18px 14px 10px 10px;
  background: linear-gradient(180deg, #ffd468, #dd8e1f);
  transform: rotate(-9deg);
}

.snack-sausage {
  left: 138px;
  width: 120px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c17036, #7b3211);
  box-shadow: 0 -5px 0 rgba(255, 204, 147, 0.16) inset;
}

.snack-bowl {
  right: 120px;
  width: 120px;
  height: 68px;
  border-radius: 0 0 60px 60px;
  background: linear-gradient(180deg, #7f3c1c, #47200e);
}

.snack-bowl::before {
  content: "";
  position: absolute;
  inset: -14px 10px 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4c36d, #c67b24 72%);
}

.snack-cards {
  right: 270px;
  width: 76px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffb440, #de6c17);
  transform: rotate(-18deg);
}

.bottle-showcase {
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translateX(-50%) rotate(-18deg);
}

.bottle-neck,
.bottle-body,
.bottle-label {
  position: absolute;
  display: block;
}

.bottle-neck {
  left: 48px;
  top: 0;
  width: 28px;
  height: 38px;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, #1f7d4e, #0d4f2f);
}

.bottle-body {
  left: 18px;
  top: 26px;
  width: 96px;
  height: 82px;
  border-radius: 24px 24px 20px 20px;
  background: linear-gradient(180deg, #2db86e, #12542f);
}

.bottle-label {
  left: 34px;
  top: 56px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #4e1b05;
  font-weight: 900;
  background: linear-gradient(180deg, #fff0c8, #ffcf77);
}

.section {
  padding: 34px;
  margin-top: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.intro-grid,
.benefits-grid,
.editorial-grid,
.cluster-grid,
.hub-grid,
.keyword-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.benefit-card,
.mini-panel,
.bonus-highlight,
.faq-item,
.editorial-card,
.cluster-card,
.keyword-card,
.hub-card {
  border-radius: 22px;
  padding: 22px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 243, 216, 0.92), rgba(255, 243, 216, 0) 20%),
    linear-gradient(180deg, rgba(255, 180, 63, 0.34), rgba(0, 0, 0, 0.12) 26%, rgba(0, 0, 0, 0.52) 100%);
}

.game-card > * {
  position: relative;
  z-index: 1;
}

.game-card:nth-child(4n + 1) {
  background: linear-gradient(180deg, #8d2a11, #3f1106);
}

.game-card:nth-child(4n + 2) {
  background: linear-gradient(180deg, #0d5761, #091f28);
}

.game-card:nth-child(4n + 3) {
  background: linear-gradient(180deg, #6f1f87, #24072e);
}

.game-card:nth-child(4n + 4) {
  background: linear-gradient(180deg, #7b5306, #281602);
}

.game-badge,
.offer-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #341200;
  background: linear-gradient(180deg, #fff2c8, #ffc455);
}

.game-card h3,
.benefit-card h3,
.info-card h3,
.mini-panel h3 {
  margin: 12px 0 8px;
  font-size: 1.25rem;
}

.category-tabs {
  margin: 0 0 18px;
}

.tab-btn {
  color: var(--foam);
  cursor: pointer;
  font: inherit;
}

.tab-btn.is-active {
  color: #3e1703;
  background: linear-gradient(180deg, #ffe4a2, #ffab2e);
}

.bonus-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.bonus-highlight {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background:
    radial-gradient(circle at top right, rgba(255, 186, 81, 0.3), transparent 26%),
    linear-gradient(180deg, rgba(97, 34, 10, 0.96), rgba(42, 12, 5, 0.96));
}

.bonus-highlight::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 57, 0.35), transparent 65%);
}

.bonus-highlight > * {
  position: relative;
  z-index: 1;
}

.bonus-list {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-card h3,
.cluster-card h3,
.keyword-card h3,
.hub-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.keyword-card,
.hub-card {
  border: 1px solid rgba(255, 196, 94, 0.14);
  background: linear-gradient(180deg, rgba(73, 31, 11, 0.72), rgba(32, 13, 6, 0.86));
}

.hub-card {
  color: inherit;
  text-decoration: none;
}

.hub-card:hover {
  transform: translateY(-2px);
}

.inner-page {
  min-height: 100vh;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(63, 26, 10, 0.88), rgba(29, 11, 5, 0.92));
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--foam);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--amber-soft);
}

.service-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(88, 38, 14, 0.88), rgba(37, 14, 6, 0.94)),
    radial-gradient(circle at top right, rgba(255, 170, 59, 0.12), transparent 32%);
  box-shadow: var(--shadow);
}

.service-strip strong {
  margin-right: 4px;
  color: var(--foam);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 223, 150, 0.18);
  background: rgba(22, 8, 4, 0.45);
  color: var(--foam);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 223, 150, 0.34);
  background: rgba(255, 171, 46, 0.12);
}

.inner-hero {
  padding: 28px;
  margin-top: 18px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(34, 11, 5, 0.96), rgba(16, 6, 3, 0.98)),
    radial-gradient(circle at top right, rgba(255, 162, 53, 0.14), transparent 24%);
}

.inner-hero h1 {
  margin: 0 0 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.96;
}

.inner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.copy-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 196, 94, 0.14);
  background: linear-gradient(180deg, rgba(73, 31, 11, 0.72), rgba(32, 13, 6, 0.86));
}

.copy-card h2,
.copy-card h3 {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--foam);
}

.faq-item summary::marker {
  color: var(--amber);
}

.footer {
  padding: 28px 34px;
  margin-top: 18px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 205, 132, 0.14);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: flex-start;
}

.responsible-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 18px;
}

.responsible-note strong {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #371302;
  background: linear-gradient(180deg, #ffe29f, #ffab2e);
}

.game-card.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .hero,
  .bonus-layout,
  .intro-grid,
  .games-grid,
  .editorial-grid,
  .cluster-grid,
  .hub-grid,
  .keyword-map,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 380px;
  }

  .service-strip {
    align-items: flex-start;
  }

  .service-strip strong {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar,
  .footer-top,
  .responsible-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section,
  .footer {
    padding: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero-stats,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .games-grid,
  .intro-grid,
  .editorial-grid,
  .cluster-grid,
  .hub-grid,
  .keyword-map,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .slot-machine {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slot-machine span {
    height: 88px;
  }

  .tap-column {
    right: 16px;
    width: 70px;
  }
}
