/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050811;
  color: #f5f7fb;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* LAYOUT WRAPPERS */

.page {
  min-height: 100vh;
}

.blur-wrap {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1f2937 0, #050811 55%);
}

.wrapper {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* CONTAINER */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 8, 17, 0.9), rgba(5, 8, 17, 0.4));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.header__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.header__actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .header__actions .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--primary {
  background: linear-gradient(135deg, #facc15, #22c55e);
  color: #020617;
  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.3);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(250, 204, 21, 0.4);
}

.btn--secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.7);
}

.btn--secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.btn--ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn--ghost:hover {
  border-color: #facc15;
}

/* HERO */

.hero {
  position: relative;
  padding: 60px 0 48px;
  z-index: 1;
}

.hero__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 8px;
}

.hero__title {
  font-size: 32px;
  line-height: 1.18;
  margin: 0 0 14px;
}

.hero__title strong {
  color: #facc15;
  font-weight: 800;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: #d1d5db;
  max-width: 520px;
  font-size: 15px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

.hero__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #22c55e);
}

/* HERO SIDE */

.hero__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero__image {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* HERO CARD */

.hero-card {
  width: 100%;
  max-width: 320px;
  padding: 20px 18px;
  border-radius: 20px;
  background: radial-gradient(circle at top, #1f2937, #020617 70%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

.hero-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin: 0 0 8px;
}

.hero-card__bonus {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #facc15;
}

.hero-card__text {
  font-size: 13px;
  margin: 0 0 16px;
  color: #e5e7eb;
}

.hero-card__note {
  margin: 10px 0 0;
  font-size: 11px;
  color: #9ca3af;
}

/* SECTIONS */

.section {
  padding: 52px 0;
  position: relative;
  z-index: 1;
}

.section--light {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5));
}

.section--dark {
  background: radial-gradient(circle at top, #020617, #020617 70%);
}

.section__head {
  margin-bottom: 28px;
  max-width: 720px;
}

.section__head--white .section__title,
.section__head--white .section__subtitle {
  color: #f9fafb;
}

.section__title {
  margin: 0 0 8px;
  font-size: 24px;
}

.section__subtitle {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

/* GRID */

.grid {
  display: grid;
  gap: 22px;
}

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

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

@media (max-width: 900px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FEATURE CARDS */
.feature {
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.feature--white {
  background: rgba(15, 23, 42, 0.4);
}

.feature__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.feature__marker {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #facc15;
}

/* разные акценты для типов блоков */
.feature__header--sports .feature__marker {
  background: #facc15;
}

.feature__header--casino .feature__marker {
  background: #22c55e;
}

.feature__header--mobile .feature__marker {
  background: #60a5fa;
}

.feature__title {
  margin: 0;
  font-size: 16px;
}

.feature__text {
  margin: 0;
  font-size: 14px;
  color: #d1d5db;
}


/* BONUS BLOCK */

.bonus__content {
  max-width: 840px;
}

.bonus__highlight {
  font-size: 14px;
  margin: 0 0 12px;
  color: #e5e7eb;
}

.bonus__note {
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}

/* TABLES */

.table {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.table--wide {
  max-width: 100%;
}

.table td {
  padding: 10px 12px;
  font-size: 13px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.table tr:nth-child(1) td {
  background: rgba(15, 23, 42, 0.95);
  font-weight: 600;
}

.table tr:nth-child(even) td {
  background: rgba(15, 23, 42, 0.85);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrap::-webkit-scrollbar {
  height: 6px;
}

.table-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 999px;
}

/* На маленьких экранах уменьшаем шрифт и паддинги */
@media (max-width: 600px) {
  .table td {
    padding: 8px 8px;
    font-size: 12px;
  }
}

/* FAQ */

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

.faq__item {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.faq__question {
  margin: 0 0 6px;
  font-size: 15px;
}

.faq__answer {
  margin: 0;
  font-size: 14px;
  color: #d1d5db;
}

/* адаптив для планшетов и мобильных */
@media (max-width: 900px) {
  .faq {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FOOTER */

.footer {
  padding: 18px 0 24px;
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 1);
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #6b7280;
}

.footer__copy {
  margin: 0;
}

.footer__disclaimer {
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    padding-top: 32px;
  }

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

  .hero__side {
    align-items: flex-start;
  }

  .hero__image {
    max-width: 100%;
  }

  .hero-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 24px;
  }

  .section {
    padding: 40px 0;
  }
}
