:root {
  --bg-main: #140b3b;
  --bg-header-footer: #1b0934;
  --btn-main: #e53a8e;
  --text-main: #f5f2ff;
  --text-muted: #cfc6ea;
  --card-bg: #22114d;
  --border-soft: #3a236f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #24115a 0%, var(--bg-main) 45%, #10082f 100%);
  color: var(--text-main);
  line-height: 1.5;
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
}

p,
ul,
ol {
  margin: 0 0 16px;
}

.site-header,
.site-footer {
  background: var(--bg-header-footer);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #2f1a5f;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.logo img {
  width: 170px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.header-nav a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #fff;
}

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

.btn {
  background: var(--btn-main);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.hero {
  padding: 48px 0 28px;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-banner {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid #3f2676;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn {
  display: inline-block;
  margin-top: 22px;
  background: var(--btn-main);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: 999px;
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 58, 142, 0.6);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 16px rgba(229, 58, 142, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 58, 142, 0);
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.game-card {
  aspect-ratio: 1 / 1;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}

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

.seo {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid #2f1b5b;
  border-bottom: 1px solid #2f1b5b;
}

.seo ul,
.seo ol {
  padding-left: 20px;
}

.static-page {
  padding-top: 40px;
}

.back-home {
  margin-bottom: 14px;
}

.back-home a {
  color: #f3b6d7;
  font-weight: 700;
}

.static-content {
  background: rgba(18, 8, 51, 0.62);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 20px;
}

.static-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.static-content a {
  color: #f3b6d7;
}

.form-card {
  margin: 16px 0 22px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(39, 22, 86, 0.6);
}

.site-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-weight: 700;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  border: 1px solid #5c3f98;
  border-radius: 9px;
  background: #170a3f;
  color: #fff;
  padding: 10px 12px;
  font: inherit;
}

.site-form textarea {
  resize: vertical;
}

.site-form input::placeholder,
.site-form textarea::placeholder {
  color: #b6a7dd;
}

.form-row-inline {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.checkbox-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.checkbox-wrap input {
  width: auto;
}

.form-link {
  color: #f3b6d7;
  font-weight: 700;
}

.form-submit {
  justify-self: start;
}

.seo-inline-image {
  width: min(100%, 860px);
  margin: 10px auto 18px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.seo .review {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.seo .faq-item {
  margin-bottom: 10px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  min-width: 0;
}

th,
td {
  border: 1px solid var(--border-soft);
  padding: 10px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

th {
  background: #2a1758;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.payments-grid img {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  border: 1px solid #e8defa;
  aspect-ratio: 1.8 / 1;
  object-fit: contain;
}

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

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px;
}

.review-card h3 {
  margin-bottom: 10px;
}

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

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 120px;
  padding: 0 16px 14px;
}

.page-updated {
  border-top: 1px solid #2f1b5b;
  border-bottom: 1px solid #2f1b5b;
  background: #120833;
}

.page-updated p {
  margin: 0;
  padding: 14px 0;
  text-align: center;
}

.site-footer {
  padding: 34px 0 24px;
  border-top: 1px solid #2f1a5f;
}

.trust-badges,
.providers-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-badges img {
  width: 120px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}

.footer-links {
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-links a {
  color: #e3d8ff;
}

.providers-row img {
  width: 120px;
  height: 46px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}

.copyright {
  text-align: center;
  margin-top: 22px;
  color: #dbcffa;
}

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

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

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

@media (max-width: 680px) {
  .header-inner {
    min-height: 56px;
    gap: 8px;
    padding: 6px 0;
  }

  .logo img {
    width: 96px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .btn {
    padding: 7px 10px;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  .hero {
    padding-top: 26px;
  }

  .section {
    padding: 40px 0;
  }

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

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .form-row-inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seo table,
  .static-content table {
    font-size: 0.9rem;
    table-layout: fixed;
  }

  .seo th,
  .seo td,
  .static-content th,
  .static-content td {
    padding: 8px;
  }
}
