:root {
  --header-footer-bg: #0e111c;
  --main-bg: #121723;
  --accent-green: #6fe95b;
  --text-main: #e9f0ff;
  --text-muted: #b6c0d9;
  --card-bg: #1a2233;
  --card-border: #26324d;
  --glow: rgba(111, 233, 91, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Trebuchet MS", "Segoe UI", "Gill Sans", sans-serif;
  background:
    radial-gradient(circle at 85% -15%, rgba(111, 233, 91, 0.18), transparent 36%),
    radial-gradient(circle at 10% 20%, rgba(53, 99, 232, 0.2), transparent 32%),
    var(--main-bg);
  color: var(--text-main);
  line-height: 1.55;
}

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

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

.section-spaced {
  padding: 2.8rem 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 1.1rem;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-footer-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

.header-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  opacity: 1;
}

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

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--accent-green);
  color: #10200a;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
  border-radius: 999px;
  padding: 0.52rem 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-btn:hover,
.header-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hero-section {
  padding: 2.4rem 0 1.2rem;
}

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

.hero-banner {
  width: min(100%, 970px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  border: none;
  border-radius: 999px;
  background: var(--accent-green);
  color: #0f1d09;
  font-size: 1.08rem;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
  padding: 0.78rem 2rem;
  cursor: pointer;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--glow);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(111, 233, 91, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 233, 91, 0);
    transform: scale(1);
  }
}

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

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

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

.seo-wrap {
  background: rgba(14, 17, 28, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.4rem;
}

.seo-intro {
  margin-top: 0;
}

.seo-subsection + .seo-subsection {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-figure {
  margin: 0.9rem 0 1rem;
}

.seo-figure img {
  width: min(100%, 920px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.seo-wrap p,
.seo-wrap li,
.seo-wrap td,
.seo-wrap th,
.updated-box {
  color: var(--text-muted);
}

.seo-wrap strong {
  color: #f1f6ff;
}

.seo-wrap ul,
.seo-wrap ol {
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  padding-left: 1.3rem;
}

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

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

caption {
  text-align: left;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

th,
td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.62rem;
  text-align: left;
}

th {
  color: var(--text-main);
  background: rgba(111, 233, 91, 0.11);
}

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

.payments-grid img {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d7dceb;
  padding: 0.9rem;
  height: 78px;
  width: 100%;
  object-fit: contain;
}

.form-section {
  padding-top: 0;
}

.form-card {
  background: rgba(14, 17, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.1rem;
}

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

.site-form label {
  color: var(--text-main);
  font-weight: 600;
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 13, 22, 0.92);
  color: var(--text-main);
  border-radius: 8px;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.site-form textarea {
  resize: vertical;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.form-submit-btn {
  justify-self: start;
  border: none;
  border-radius: 999px;
  background: var(--accent-green);
  color: #10200a;
  font-weight: 800;
  font-family: inherit;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.form-submit-btn:hover,
.form-submit-btn:focus-visible {
  filter: brightness(1.05);
}

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

.review-card {
  background: rgba(10, 14, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 1rem;
}

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

.review-card p:last-child {
  margin-bottom: 0;
}

.review-stars {
  color: #ffd96a;
  font-size: 1.1rem;
  line-height: 1;
}

.review-author {
  color: #d8e1ff;
  font-weight: 600;
}

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(14, 17, 28, 0.55);
}

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

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

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

.updated-section {
  padding: 1rem 0 1.8rem;
}

.updated-box {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
}

.site-footer {
  background: var(--header-footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0 1rem;
}

.footer-top {
  display: grid;
  gap: 1.2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}

.trust-badges img {
  width: 132px;
  height: 54px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.35rem;
}

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

.footer-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

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

.provider-row {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.provider-row img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  padding: 0.5rem;
}

.copyright {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

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

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

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

  .logo {
    width: 86px;
  }

  .header-nav {
    display: none;
  }

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

  .header-btn {
    padding: 0.38rem 0.68rem;
    font-size: 0.83rem;
    font-weight: 700;
  }

  .hero-section {
    padding-top: 1.4rem;
  }

  .seo-wrap {
    padding: 1rem;
  }

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

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

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