:root {
  --bg: #0d0f14;
  --surface: #171a22;
  --text: #f3f5fa;
  --muted: #b2b9c8;
  --primary: #d81e2d;
  --primary-dark: #b71522;
  --border: #2a2f3c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Mulish, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.sei-top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(13, 15, 20, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.sei-top__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sei-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  justify-content: center;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 36px;
}

.sei-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}

.sei-nav a {
  text-decoration: none;
  color: #c4cbda;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 8px;
  position: relative;
}

.sei-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 2px;
  background: linear-gradient(to right, #fb213e00, #fb213e, #fb213e00);
  box-shadow: 0 0 16px #fb213e3d, 0 4px 16px #fb213e4d;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sei-nav a:hover::after {
  opacity: 1;
}

.sei-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--primary);
  padding: 10px 16px;
  font-weight: 700;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost {
  color: var(--primary);
  background: #141821;
}

.btn-ghost:hover {
  background: #1a202c;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.menu-toggle,
.mobile-close {
  display: none;
  border: 1px solid var(--border);
  background: #141821;
  color: var(--text);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
}

.menu-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid #252b39;
  background: #131927;
  border-radius: 8px;
  padding: 0;
  justify-content: center;
  gap: 3px;
  flex-direction: column;
  padding: 0 8px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #949cb0;
}

.hero {
  position: relative;
}

.hero picture img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  inset: auto 0 42px;
  color: #fff;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.45);
}

.hero__content h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  max-width: 680px;
}

.hero__content p {
  margin: 0 0 18px;
  max-width: 560px;
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: #11151d;
}

h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.card {
  flex: 1 1 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.provider-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider-list li {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-slider__viewport {
  overflow: hidden;
  flex: 1;
}

.reviews-slider__track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
}

.reviews-slider__nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.review {
  flex: 0 0 calc((100% - 24px) / 3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

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

.review p {
  margin: 0 0 10px;
  font-size: 14px;
}

.reviews-slider__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.review-stats__item {
  flex: 1 1 170px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.review-stats__item strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.review-stats__item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.reviews-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c3c8d6;
  cursor: pointer;
}

.reviews-slider__dot.is-active {
  background: var(--primary);
}

@media (max-width: 1024px) {
  .review {
    flex-basis: calc((100% - 12px) / 2);
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  padding: 14px 52px 14px 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-trigger::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--muted);
  background: #141821;
}

.faq-trigger:hover {
  background: #1b2130;
  color: #fff;
}

.faq-trigger:hover::after {
  border-color: var(--primary);
  color: #fff;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  max-height: 240px;
}

.faq-item.is-open .faq-trigger::after {
  content: "−";
}

.footer {
  border-top: 1px solid var(--border);
  background: #0b0e13;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 700;
}

.footer a {
  color: var(--text);
}

.full-text {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.full-text h1,
.full-text h2,
.full-text h3,
.full-text h4 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.full-text p {
  margin: 0 0 12px;
}

.full-text ul,
.full-text ol {
  margin: 0 0 14px 20px;
}

.full-text li {
  margin-bottom: 6px;
}

.full-text hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.content-section {
  padding: 56px 0;
}

.content-section:nth-child(even) {
  background: #f1f3f8;
}

.content-section .content-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.content-section h2 {
  margin-top: 0;
}

.category-strip {
  padding: 20px 0 10px;
}

.category-strip__row {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow: auto hidden;
  padding-bottom: 6px;
  align-items: center;
  justify-content: center;
}

.category-strip__row a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
}

.category-strip__row img {
  width: 18px;
  height: 18px;
}

.feature-grid,
.game-grid,
.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.feature-card img {
  margin-bottom: 10px;
}

.auth-section .feature-grid {
  margin-top: 12px;
}

.auth-grid {
  align-items: stretch;
}

.auth-card {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 12px;
  background: linear-gradient(180deg, #181d28 0%, #121722 100%);
}

.auth-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-card__head img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin: 0;
}

.auth-card__head h3 {
  margin: 0;
}

.auth-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-steps li {
  color: var(--text);
}

.auth-note {
  margin: 0;
  color: var(--muted);
}

#payments .feature-card {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.payments-intro {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 780px;
}

.payments-grid {
  align-items: stretch;
}

.payments-card {
  gap: 10px;
}

.payments-card h3 {
  margin: 0;
  font-size: 28px;
}

.payments-card p {
  margin: 0;
  color: var(--text);
}

.payments-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payments-card li {
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.payments-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.game-card,
.bonus-card {
  flex: 1 1 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game-card img,
.bonus-card img {
  width: 100%;
  object-fit: cover;
}

.game-card h3,
.bonus-card h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 16px;
}

.game-card p,
.bonus-card p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 14px;
}

.game-card .btn,
.bonus-card .btn {
  margin: auto 14px 14px;
}

.bonus-total {
  display: inline-block;
  margin: 8px 0 18px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #d81e2d;
  background: #2a0f16;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.providers-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.providers-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.providers-layout {
  background: #0a0d12;
  border: 1px solid #5a1b25;
  border-radius: 14px;
  padding: 14px;
}

.providers-section {
  background: #000000;
  border-top: 1px solid #2a2f3c;
  border-bottom: 1px solid #2a2f3c;
}

.providers-section h2 {
  color: #ffffff;
}

.providers-media {
}

.providers-media img {
  border-radius: 14px;
  border: 1px solid #b32031;
  background: #ffffff;
  object-fit: contain;
  padding: 14px;
}

.providers-content {
  flex: 1 1 auto;
}

.providers-content p {
  color: #ffffff;
  margin: 0 0 8px;
}

.providers-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
}

.provider-games {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.provider-games article {
  background: #131720;
  border: 1px solid #6d2430;
  border-radius: 12px;
  padding: 12px 14px;
}

.provider-games h4 {
  margin: 0 0 6px;
  color: #ffd7dd;
}

.provider-games p {
  margin: 0;
  color: #efc5cd;
}

.provider-logos img {
  width: 160px;
  height: 64px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.footer-middle img {
  width: 110px;
  height: 28px;
}

.footer-icons--social img {
  width: 34px;
  height: 34px;
}

.review-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

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

.review-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.review-table tr td:first-child {
  width: 30%;
  font-weight: 700;
  background: #1d2230;
}

.review-table tr:last-child td {
  border-bottom: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-overlay,
.mobile-menu {
  display: none;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .sei-actions {
    display: flex;
    gap: 6px;
  }

  .sei-actions .btn {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 10px;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 12, 0.55);
    z-index: 35;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 100%);
    height: 100%;
    background: #0d111b;
    padding: 14px 12px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    flex-direction: column;
    gap: 14px;
    border-right: 1px solid #1f2330;
    z-index: 40;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #1f2330;
  }

  .mobile-menu__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    color: #f3f5fc;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }

  .mobile-menu__link img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .mobile-menu__link:hover {
    color: #ffffff;
  }

  .mobile-menu__actions {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #1f2330;
    background: transparent;
  }

  .mobile-menu__actions .btn {
    width: 100%;
    font-size: 18px;
  }

  .mobile-overlay.is-visible {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
  }

  .mobile-close {
    display: inline-flex;
    width: 30px;
    height: 30px;
    padding: 0;
    align-self: center;
    justify-content: center;
    border: 1px solid #252b39;
    background: #131927;
    color: #a8b0c5;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
  }

  .hero__content {
    inset: auto 0 24px;
  }

  .provider-logos img {
    width: calc(50% - 6px);
  }

  .providers-layout {
    flex-direction: column;
  }

  .providers-content {
    flex: initial;
    width: 100%;
  }

  .brand img {
    height: 40px;
    width: auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-slider {
    gap: 8px;
  }

  .reviews-slider__nav {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}
