:root {
  --color-bg: #1A120C;
  --color-bg-alt: #231810;
  --color-card: #2D1F14;
  --color-accent: #FF8C42;
  --color-accent-hover: #FFAE73;
  --color-secondary: #E0447C;
  --color-text: #F9F1EA;
  --color-muted: #B59E8C;
  --color-border: #3B2A1D;
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.38);
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-main: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

section {
  scroll-margin-top: 86px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
}

.btn-ghost {
  border-color: var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 140, 66, 0.12);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 18, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex-shrink: 0;
  display: inline-flex;
  border-radius: 10px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  margin-right: auto;
}

.main-nav a {
  color: var(--color-muted);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 11px 20px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(26, 18, 12, 0.94) 0%, rgba(26, 18, 12, 0.82) 34%, rgba(224, 68, 124, 0.32) 72%, rgba(255, 140, 66, 0.4) 100%),
    linear-gradient(160deg, #3B2A1D 0%, #1A120C 55%, #231810 100%),
    url("../img/banners/hero-main.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 12, 0.35) 0%, rgba(26, 18, 12, 0.1) 40%, rgba(26, 18, 12, 0.88) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 54px;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--color-accent) 0 56px, transparent 56px 108px);
  opacity: 0.55;
  transform: skewX(-32deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 20px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(255, 140, 66, 0.45);
  background: rgba(255, 140, 66, 0.1);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  background: linear-gradient(100deg, var(--color-text) 20%, var(--color-accent) 75%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--color-muted);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-pluses {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.hero-pluses li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
}

.hero-pluses svg {
  width: 22px;
  height: 22px;
  fill: var(--color-accent);
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.hero-card {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 140, 66, 0.16), rgba(45, 31, 20, 0.94) 46%);
  border: 1px solid rgba(255, 140, 66, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 34px 32px 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}

.hero-card-label {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-card-value {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.hero-card-note {
  color: var(--color-text);
  font-size: 16px;
  margin-bottom: 6px;
}

.hero-card-extra {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 26px;
}

.jackpot {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 76px 0 72px;
  text-align: center;
}

.jackpot-sub {
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}

.jackpot-main {
  display: inline-block;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 46px 30px;
  margin-bottom: 34px;
  box-shadow: var(--shadow-soft);
}

.jackpot-label {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.jackpot-sum {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  text-shadow: 0 0 34px rgba(255, 140, 66, 0.45);
  font-variant-numeric: tabular-nums;
}

.jackpot-currency {
  font-size: 0.55em;
  margin-left: 10px;
  color: var(--color-secondary);
}

.jackpot-pools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.pool {
  background: rgba(45, 31, 20, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.pool-name {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pool-sum {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.slots {
  padding: 84px 0;
}

.slots-sub {
  color: var(--color-muted);
  max-width: 700px;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 24px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tab:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.tab.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg);
}

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

.slot-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.slot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 66, 0.7);
  box-shadow: var(--shadow-soft);
}

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

.slot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-bg-alt);
}

.slot-body {
  padding: 16px 16px 18px;
}

.slot-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-provider {
  color: var(--color-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.btn-play {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 11px 0;
  transition: background 0.2s ease;
}

.btn-play:hover {
  background: var(--color-accent-hover);
}

.bonuses {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 84px 0;
}

.bonuses-sub {
  color: var(--color-muted);
  max-width: 700px;
  margin-bottom: 36px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bonus-card {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

.bonus-card svg {
  width: 44px;
  height: 44px;
  fill: var(--color-accent);
  stroke: var(--color-accent);
  margin-bottom: 18px;
}

.bonus-card .icon-hole {
  fill: var(--color-card);
  stroke: none;
}

.bonus-title {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-value {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.bonus-text {
  color: var(--color-muted);
  font-size: 15px;
}

.reviews {
  padding: 84px 0;
}

.reviews-sub {
  color: var(--color-muted);
  margin-bottom: 36px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.review-stars .star-empty {
  fill: var(--color-border);
}

.review-text {
  flex-grow: 1;
  color: var(--color-text);
  font-size: 15px;
}

.review-meta {
  color: var(--color-muted);
  font-size: 13px;
}

.about {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 84px 0;
}

.about .container {
  max-width: 900px;
}

.about p {
  color: var(--color-muted);
  margin-bottom: 18px;
}

.about h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 30px 0 12px;
  padding-left: 16px;
  border-left: 3px solid var(--color-accent);
}

.about ul {
  margin: 0 0 18px 4px;
  display: grid;
  gap: 8px;
}

.about li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
}

.about li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  transform: rotate(45deg);
}

.faq {
  padding: 84px 0;
}

.faq .container {
  max-width: 860px;
}

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

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 140, 66, 0.55);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 44px 18px 0;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--color-accent), var(--color-accent)) center / 14px 3px no-repeat,
    linear-gradient(var(--color-accent), var(--color-accent)) center / 3px 14px no-repeat;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary {
  color: var(--color-accent);
}

.faq-item p {
  color: var(--color-muted);
  font-size: 15px;
  padding: 0 0 20px;
  max-width: 700px;
}

.site-footer {
  background: #140D08;
  border-top: 1px solid var(--color-border);
  padding: 48px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(200px, 0.8fr) minmax(260px, 1.3fr);
  gap: 36px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-tag {
  color: var(--color-text);
  font-weight: 700;
  font-size: 15px;
  max-width: 200px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-nav a {
  color: var(--color-muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.footer-info p {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-copy {
  color: var(--color-text);
  font-weight: 600;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 72px;
    padding-bottom: 100px;
  }

  .hero-card {
    max-width: 460px;
  }

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

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

  .header-actions {
    margin-left: auto;
  }

  .bonuses-grid,
  .reviews-grid,
  .jackpot-pools {
    grid-template-columns: 1fr;
  }

  .jackpot-main {
    padding: 20px 24px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 540px) {
  .slots-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hero::after {
    bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
