:root {
  --color-bg: #0f1116;
  --color-bg-alt: #171a22;
  --color-surface: #1d212b;
  --color-primary: #ff7a1a;
  --color-secondary: #ffc94d;
  --color-accent: #2fd06a;
  --color-text: #f2f3f7;
  --color-text-muted: #a4a9ba;
  --color-border: #2a2f3c;
  --font-base: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .container {
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__eyebrow {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.section__title {
  font-size: 32px;
  margin-bottom: 16px;
}

.section__lead {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #17130a;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 22, 0.92);
  border-bottom: 1px solid var(--color-border);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 20px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  line-height: 0;
}

.header__logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.header__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.header__nav a {
  font-size: 14px;
  color: var(--color-text-muted);
}

.header__nav a:hover {
  color: var(--color-text);
}

.header__actions {
  display: flex;
  gap: 12px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__burger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

.hero {
  padding: 72px 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 122, 26, 0.18), transparent 55%), var(--color-bg);
}

.hero__row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 122, 26, 0.14);
  color: var(--color-secondary);
  border: 1px solid rgba(255, 122, 26, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero__title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__subtitle {
  color: var(--color-text-muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__stat b {
  display: block;
  font-size: 22px;
  color: var(--color-secondary);
}

.hero__stat span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.hero__media {
  border-radius: 24px;
  min-height: 360px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  background-image: url("../img/banners/hero-1.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.hero__card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 17, 22, 0.82);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(6px);
}

.hero__card b {
  display: block;
  font-size: 26px;
  color: var(--color-secondary);
}

.hero__card span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 26px;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  background-size: cover;
}

.feature-card__icon--fast {
  background-image: url("../img/ui/icon-fast-payout.webp");
}

.feature-card__icon--bonus {
  background-image: url("../img/ui/icon-bonus.webp");
}

.feature-card__icon--secure {
  background-image: url("../img/ui/icon-secure.webp");
}

.feature-card__icon--mobile {
  background-image: url("../img/ui/icon-mobile.webp");
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 14px;
}

.bonus-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.bonus-card__percent {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.bonus-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bonus-card p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.live-wins {
  overflow: hidden;
}

.live-wins__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.live-wins__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: live-wins-scroll 32s linear infinite;
}

.live-wins__track:hover {
  animation-play-state: paused;
}

@keyframes live-wins-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.live-win-card {
  flex: 0 0 220px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 12px;
}

.live-win-card__img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.live-win-card__body {
  min-width: 0;
}

.live-win-card__top {
    flex-direction: column;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.live-win-card__game {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-win-card__amount {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 18px;
}

.slots-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.slots-toolbar button {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.slots-toolbar button.is-active {
  color: #17130a;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.slot-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.slot-card__actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 17, 22, 0.66);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.slot-card:hover .slot-card__actions {
  opacity: 1;
}

.slot-card__btn {
  flex: 0 0 auto;
  padding: 12px 30px;
}

.slot-card__body {
  padding: 16px;
}

.slot-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.slot-card__provider {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.slot-card__btn {
  text-align: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #17130a;
}

.steps-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.steps-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #17130a;
  font-weight: 800;
  margin-bottom: 14px;
}

.steps-list h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.steps-list p {
  color: var(--color-text-muted);
  font-size: 14px;
}

.about {
  background: var(--color-bg-alt);
}

.about__content {
  max-width: 860px;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about h3 {
  font-size: 20px;
  margin-top: 26px;
  margin-bottom: 10px;
}

.about p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.about ul {
  color: var(--color-text-muted);
  margin: 0 0 14px 0;
  display: grid;
  gap: 8px;
}

.about ul li::before {
  content: "-";
  color: var(--color-primary);
  margin-right: 8px;
  font-weight: 700;
}

.faq-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-open__item {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  padding: 24px 24px 24px 28px;
}

.faq-open__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.faq-open__q {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.faq-open__a {
  color: var(--color-text-muted);
  font-size: 14px;
}

.jackpot {
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 122, 26, 0.16), transparent 60%), var(--color-surface);
  padding: 50px 30px;
}

.jackpot__label {
  color: var(--color-secondary);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.jackpot__value {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.jackpot__text {
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 24px;
}

.footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  background: var(--color-bg-alt);
}

.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (max-width: 960px) {
  .hero__row {
    grid-template-columns: 1fr;
  }

  .grid-3, .grid-4, .bonus-row, .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 20px 16px;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .header__burger {
    display: flex;
  }
}

@media (max-width: 760px) {
  .faq-open {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero__title {
    font-size: 32px;
  }

  .jackpot__value {
    font-size: 34px;
  }

  .grid-3, .grid-4, .bonus-row, .steps-list, .slots-grid {
    grid-template-columns: 1fr;
  }

  .footer__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__row {
    padding: 14px;
  }

  .header__actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .header__actions .btn--ghost {
    display: none;
  }
}
/* footer layout refresh */
.footer__row { justify-content: center; flex-direction: column; text-align: center; gap: 16px; }
.footer__nav { justify-content: center; }
.footer__copy { text-align: center; }
@media (max-width: 720px) {
  .footer__grid, .footer__row { grid-template-columns: 1fr; justify-items: center; justify-content: center; text-align: center; }
  .footer__grid > div:first-child, .footer__col, .footer__nav { justify-content: center; justify-self: center; text-align: center; }
  .footer__col { border-left: 0; padding-left: 0; display: flex; flex-wrap: wrap; gap: 10px 16px; }
  .footer__title { flex-basis: 100%; text-align: center; }
}
/* end footer layout refresh */
