*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  background: radial-gradient(120% 80% at 10% 0%, #1f5a3c 0%, transparent 55%), linear-gradient(180deg, #0f2a4d 0%, #0b1e3a 45%, #0b1e3a 100%);
  color: #e8f1ff;
  min-height: 100vh;
  padding-bottom: 120px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 12px 16px;
  background: #ff7a1a;
  color: #0b1e3a;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
}

.skip-link:focus {
  left: 16px;
  outline: 3px solid #2eff7a;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-root {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: linear-gradient(180deg, rgba(15, 42, 77, 0.97) 0%, rgba(11, 30, 58, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 122, 26, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-lockup__mark {
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-lockup__name {
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffc107 0%, #ff8c2a 50%, #ff6a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-lockup__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ecbff;
  opacity: 0.95;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1 1 280px;
}

.site-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.rail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rail-btn--orange {
  background: linear-gradient(180deg, #ff8c2a 0%, #ff6a00 100%);
  color: #0b1e3a;
}

.rail-btn--green {
  background: linear-gradient(180deg, #2eff7a 0%, #00c853 100%);
  color: #0b1e3a;
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.45);
  animation: glow-pulse 2.4s ease-in-out infinite;
}

.rail-btn:hover,
.rail-btn:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.rail-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

.rail-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.82rem;
  color: #cfe6ff;
  transition: background 0.3s ease, color 0.3s ease;
}

.rail-menu a:hover,
.rail-menu a:focus-visible {
  background: rgba(255, 122, 26, 0.18);
  color: #fff;
  outline: none;
}

.rail-ico {
  font-size: 1rem;
  opacity: 0.9;
}

.primary-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100svh;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.hero-banner {
  position: relative;
  margin: 0;
}

.hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 58, 0.35) 0%, rgba(15, 42, 77, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-stone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: min(520px, 92vw);
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(11, 30, 58, 0.72);
  border: 1px solid rgba(46, 125, 91, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  backdrop-filter: blur(6px);
}

.hero-stone__title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffd54f;
  line-height: 1.15;
}

.hero-stone__lead {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: #cfe6ff;
  opacity: 0.95;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, #2eff7a 0%, #00c853 100%);
  color: #0b1e3a;
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.6);
  transition: transform 0.3s ease;
}

.cta-main:hover,
.cta-main:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.section-title {
  margin: 0 0 16px;
  font-size: 1.35rem;
  color: #e8f1ff;
}

.slots-strip__track {
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slots-strip__list {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 4px 2px 8px;
}

.slots-strip__list li {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.slot-card {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-card img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.slot-card:hover,
.slot-card:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(122, 60, 255, 0.55);
  outline: none;
}

.slot-card__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(180deg, #7a3cff 0%, #9c4dff 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.search-bar__input {
  flex: 1 1 240px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(46, 125, 91, 0.5);
  background: rgba(11, 30, 58, 0.85);
  color: #e8f1ff;
}

.search-bar__input:focus-visible {
  outline: 2px solid #2eff7a;
  outline-offset: 2px;
}

.search-bar__btn {
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(180deg, #2eff7a 0%, #00c853 100%);
  color: #0b1e3a;
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.45);
  transition: transform 0.3s ease;
}

.search-bar__btn:hover,
.search-bar__btn:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.jackpot-banner {
  position: relative;
  border-radius: 20px;
  padding: 14px;
  background: linear-gradient(135deg, #ffc107 0%, #ff8c2a 40%, #ffd54f 100%);
  overflow: hidden;
}

.jackpot-banner__wood {
  display: none;
}

.jackpot-banner__plate {
  text-align: left;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1b2f57 0%, #14284b 100%);
  color: #e8f1ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.jackpot-banner__plate p {
  margin: 0 0 14px;
  line-height: 1.6;
  color: #d9e8ff;
}

.jackpot-banner__plate h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #ffd54f;
}

.jackpot-banner__plate ol {
  margin: 10px 0 14px 22px;
  padding: 0;
}

.jackpot-banner__plate li {
  margin: 6px 0;
  color: #d9e8ff;
  line-height: 1.55;
}

.jackpot-banner__label {
  margin: 0;
  font-size: 0.9rem;
  color: #e8dfff;
}

.jackpot-banner__sum {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #ffd54f;
}

.cta-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, #2eff7a 0%, #00c853 100%);
  color: #0b1e3a;
  box-shadow: 0 0 15px rgba(0, 255, 100, 0.45);
  transition: transform 0.3s ease;
}

.cta-sub:hover,
.cta-sub:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.sports-row__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.sport-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(15, 42, 77, 0.85);
  border: 1px solid rgba(46, 125, 91, 0.35);
}

.sport-card__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.sport-card__meta {
  margin: 0 0 12px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.sport-card__cta {
  display: inline-flex;
  min-height: 40px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(180deg, #ff8c2a 0%, #ff6a00 100%);
  color: #0b1e3a;
  transition: transform 0.3s ease;
}

.sport-card__cta:hover,
.sport-card__cta:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(46, 125, 91, 0.35);
}

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: rgba(11, 30, 58, 0.65);
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table thead th {
  background: rgba(31, 90, 60, 0.55);
  color: #e8f1ff;
}

.data-table tbody th {
  font-weight: 600;
  color: #ffd54f;
}

.site-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.footer-col__title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #ffd54f;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.footer-links a {
  color: #cfe6ff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #2eff7a;
  outline: none;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 24px 0 12px;
}

.pay-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.site-footer__fine {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.75;
  text-align: center;
}

.cookie-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9500;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #7a3cff 0%, #5a24c9 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-bar__title {
  margin: 0;
  font-weight: 800;
  flex: 1 1 100%;
}

.cookie-bar__text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.9rem;
}

.cookie-bar__btn {
  min-height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  background: #2eff7a;
  color: #0b1e3a;
}

.cookie-bar[hidden] {
  display: none;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 9400;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  background: linear-gradient(180deg, #ff8c2a 0%, #ff6a00 100%);
  color: #0b1e3a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.to-top:hover,
.to-top:focus-visible {
  transform: scale(1.05);
  outline: 3px solid #2eff7a;
}

.to-top[hidden] {
  display: none;
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(0, 255, 100, 0.45);
  }
  50% {
    box-shadow: 0 0 22px rgba(0, 255, 100, 0.75);
  }
}

@media (min-width: 901px) {
  .hero-stage {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .site-root {
    padding-bottom: 120px;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__actions {
    justify-content: center;
  }

  .rail-menu {
    justify-content: center;
  }

  .rail-menu a {
    font-size: 0.78rem;
    padding: 6px 8px;
  }

  .to-top {
    bottom: 100px;
  }

  .jackpot-banner {
    padding: 12px;
  }

  .jackpot-banner__plate {
    padding: 18px 16px;
  }

  .jackpot-banner__plate h3 {
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .rail-btn,
  .cta-main,
  .slot-card,
  .cta-sub,
  .sport-card__cta,
  .search-bar__btn,
  .to-top {
    transition: none;
    animation: none;
  }
}
