:root {
  --bg-main: #0e1117;
  --bg-surface: #171c26;
  --bg-card: #111722;
  --accent: #c00d2e;
  --accent-hover: #d6183c;
  --text-main: #f3f6fb;
  --text-soft: #b5c0d1;
  --border: #273247;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 5%, rgba(192, 13, 46, 0.22), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(31, 43, 66, 0.8), transparent 28%),
    linear-gradient(180deg, #0f1320 0%, var(--bg-main) 42%, #0a0e14 100%);
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(23, 28, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  width: 172px;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 1.3rem;
}

.header-nav a {
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--text-main);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.header-btn {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.58rem 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero {
  padding: 2.4rem 0 2rem;
}

.hero-content {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-banner-wrap {
  width: min(100%, 1020px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-banner {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.85rem 1.7rem;
  box-shadow: 0 0 0 0 rgba(192, 13, 46, 0.6);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(192, 13, 46, 0.65);
  }

  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 15px rgba(192, 13, 46, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(192, 13, 46, 0);
  }
}

section {
  padding: 2rem 0;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

h3 {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

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

.game-card {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #141b28;
  border: 1px solid var(--border);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card:hover img {
  transform: scale(1.08);
}

.seo,
.payments,
.reviews,
.faq {
  background: linear-gradient(180deg, rgba(23, 28, 38, 0.68), rgba(12, 16, 24, 0.7));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.seo p {
  margin: 0.2rem 0 1rem;
  color: var(--text-soft);
}

.seo-rich-content > h2,
.seo-rich-content > h3 {
  margin-top: 1.3rem;
}

.seo-rich-content > h2:first-child {
  margin-top: 0;
}

.seo-rich-content ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.seo-inline-image {
  margin: 0.6rem 0 1rem;
}

.seo-inline-image img {
  width: min(100%, 760px);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.seo-rich-content .review,
.seo-rich-content .seo-faq-item,
.seo-rich-content .faq-item {
  margin: 0.8rem 0;
  padding: 0.9rem 1rem;
  background: rgba(14, 19, 30, 0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.seo-rich-content .review p:last-child,
.seo-rich-content .seo-faq-item p:last-child,
.seo-rich-content .faq-item p:last-child {
  margin-bottom: 0;
}

.page-form-card {
  margin: 1rem 0 1.3rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(12, 18, 29, 0.82);
}

.page-form-card h2 {
  margin-top: 0;
}

.site-form {
  display: grid;
  gap: 0.62rem;
}

.site-form label {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(10, 15, 24, 0.92);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.64rem 0.72rem;
  font: inherit;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  outline: 2px solid rgba(192, 13, 46, 0.5);
  outline-offset: 1px;
}

.site-form textarea {
  resize: vertical;
  min-height: 120px;
}

.site-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0.2rem 0;
}

.site-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.site-checkbox input {
  width: 16px;
  height: 16px;
}

.site-form-link {
  color: var(--text-soft);
  text-decoration: underline;
}

.form-submit-btn {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.form-submit-btn:hover {
  background: var(--accent-hover);
}

.seo-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.seo ul,
.seo ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.seo-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  background: rgba(10, 14, 20, 0.7);
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.72rem;
  text-align: left;
}

th {
  color: #fff;
  background: rgba(192, 13, 46, 0.2);
}

td {
  color: var(--text-soft);
}

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

.payments-grid img,
.providers img,
.trust-badges img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  padding: 0.45rem;
  background: rgba(17, 23, 34, 0.86);
  border: 1px solid var(--border);
  border-radius: 10px;
}

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

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

.review-card h3 {
  margin-top: 0;
}

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

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(16, 23, 34, 0.9);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-main);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.9rem 1rem;
}

.faq-question::after {
  content: "+";
  float: right;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 1rem 0.95rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
}

.page-updated {
  padding: 1.1rem 0;
  background: rgba(17, 24, 35, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-updated p {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
}

.site-footer {
  background: var(--bg-surface);
  padding: 1.45rem 0 1.8rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #dbe4f3;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.providers {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.copyright {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (max-width: 990px) {
  .payments-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 768px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    padding: 0.42rem 0;
    gap: 0.45rem;
  }

  .logo {
    width: 92px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.3rem;
  }

  .header-btn {
    padding: 0.42rem 0.65rem;
    font-size: 0.78rem;
  }

  section {
    padding: 1.6rem 0;
  }

  .hero {
    padding-top: 1.35rem;
  }

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

  .seo-lists {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .site-form-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
