:root {
  --header-footer: #201109;
  --action: #44a500;
  --background: #1a0a03;
  --surface: #2b1409;
  --surface-soft: #371a0d;
  --text: #f6e8db;
  --muted: #ddc2a8;
  --border: #4a2412;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  background: radial-gradient(circle at top, #2a1309 0%, var(--background) 45%, #120701 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.site-header {
  background: var(--header-footer);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

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

.header-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.header-nav a {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

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

.header-btn {
  background: var(--action);
  color: #ffffff;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.main-content section {
  margin-top: 3.5rem;
}

.hero h1,
section h2,
section h3 {
  line-height: 1.2;
}

.hero {
  text-align: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero-banner {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cta-btn {
  display: inline-block;
  margin-top: 1.4rem;
  background: var(--action);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(68, 165, 0, 0.55);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 18px rgba(68, 165, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(68, 165, 0, 0);
  }
}

.games h2,
.payments h2,
.reviews h2,
.faq h2,
.seo h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

.seo {
  background: linear-gradient(145deg, rgba(43, 20, 9, 0.95), rgba(29, 13, 7, 0.95));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
}

.page-content h1 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.page-content h2 {
  margin-top: 1.3rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
}

.page-content h3 {
  margin-top: 1.05rem;
  margin-bottom: 0.45rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.page-content p {
  color: var(--muted);
}

.page-content ul,
.page-content ol {
  color: var(--muted);
  padding-left: 1.2rem;
}

.form-shell {
  margin: 1rem 0 1.4rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(26, 10, 3, 0.65);
}

.form-shell h2 {
  margin-top: 0;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff7f1;
  color: #2f1a10;
  font: inherit;
}

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

.form-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background: var(--action);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.form-submit:hover {
  filter: brightness(1.08);
}

.seo-subsection + .seo-subsection {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(221, 194, 168, 0.2);
}

.seo-subsection h3 {
  margin: 0 0 0.65rem;
}

.seo-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 0.35rem 0 0.9rem;
  max-height: 340px;
  object-fit: cover;
}

.seo p,
.seo li {
  color: var(--muted);
}

.seo ul,
.seo ol {
  padding-left: 1.2rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  min-width: 460px;
}

caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

th {
  background: #3a1a0d;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.8rem;
}

.payments-grid img {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.55rem;
  height: 70px;
  object-fit: contain;
}

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

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

.review-card p {
  margin-top: 0;
  color: #f0d9c5;
}

.review-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 0.75rem 0.95rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

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

.updated-block {
  margin-top: 3rem;
  background: #140701;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.updated-block p {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  margin-top: 0;
  background: var(--header-footer);
  border-top: 1px solid var(--border);
}

.trust-badges,
.footer-links,
.providers,
.copyright {
  padding: 1rem 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: center;
}

.trust-badges a {
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 76px;
  background: #2a140a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.trust-badges img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.footer-links a:hover {
  color: #fff;
}

.providers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.providers img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 0.45rem;
}

.copyright {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.copyright p {
  margin: 0;
}

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

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

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

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

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

  .header-wrap {
    min-height: 58px;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    padding: 0.35rem 0;
  }

  .brand img {
    width: 96px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: 0.4rem;
  }

  .header-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.72rem;
  }

  .main-content section {
    margin-top: 2.3rem;
  }

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

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

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

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

  .seo {
    padding: 1rem;
  }
}
