:root {
  --header-footer-bg: #016035;
  --button-green: #63a200;
  --main-bg: #ffffff;
  --text-color: #1a1a1a;
  --muted-text: #4f4f4f;
  --card-bg: #f8faf8;
  --border-color: #dce9dd;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

.site-header {
  background: var(--header-footer-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #ffffff;
  font-weight: 600;
}

.main-nav a {
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
}

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

.btn {
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  display: inline-block;
}

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

.btn-header {
  background: var(--button-green);
  color: #ffffff;
  padding: 0.58rem 0.9rem;
  font-size: 0.92rem;
}

.main-content {
  background: var(--main-bg);
}

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

.hero h1 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.hero-banner {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d4e7d6;
}

.cta-wrap {
  margin-top: 1.4rem;
  text-align: center;
}

.btn-cta {
  background: var(--button-green);
  color: #ffffff;
  padding: 0.95rem 2.1rem;
  font-size: 1.05rem;
  border-radius: 999px;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 162, 0, 0.65);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(99, 162, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 162, 0, 0);
  }
}

.games-section h2,
.seo-section h2,
.payments-section h2,
.reviews-section h2,
.faq-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

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

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

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

.seo-section {
  background: #f7fbf7;
  border-top: 1px solid #edf3ee;
  border-bottom: 1px solid #edf3ee;
}

.seo-section h3 {
  margin-top: 0;
}

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

.seo-content > section {
  margin-bottom: 2rem;
}

.seo-content > section:last-child {
  margin-bottom: 0;
}

.seo-content h2,
.page-content h2 {
  margin-top: 0;
}

.seo-content h3,
.page-content h3 {
  margin-top: 1.2rem;
}

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

.seo-content li + li,
.page-content li + li {
  margin-top: 0.28rem;
}

.content-image {
  margin: 1rem 0 1.1rem;
}

.content-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d4e2d6;
}

.inner-page .page-content {
  background: #ffffff;
  border: 1px solid #e0ece2;
  border-radius: 14px;
  padding: 1.2rem;
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #ffffff;
}

th,
td {
  border: 1px solid #d4e2d6;
  padding: 0.75rem;
  text-align: left;
}

th {
  background: #e8f2e9;
}

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

.payments-grid img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: #ffffff;
}

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

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

.review-card h3 {
  margin: 0 0 0.5rem;
}

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

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

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #f3f9f4;
  padding: 0.95rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

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

.updated-section {
  border-top: 1px solid #e7ece8;
  border-bottom: 1px solid #e7ece8;
  padding: 0.9rem 0;
  background: #fbfdfb;
}

.updated-section p {
  margin: 0;
  text-align: center;
  color: #2f5134;
  font-weight: 600;
}

.site-footer {
  background: var(--header-footer-bg);
  color: #ffffff;
  padding: 1.6rem 0 1rem;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.trust-section a {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 0.55rem;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.trust-section img {
  width: 100%;
  height: 52px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  justify-content: center;
  margin: 0 0 1.2rem;
}

.footer-links a {
  font-size: 0.95rem;
}

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

.providers-section img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #dcf3e2;
}

.content-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
  max-width: 620px;
}

.content-form label {
  font-weight: 700;
  color: #173f20;
}

.content-form input,
.content-form textarea {
  width: 100%;
  border: 1px solid #c6d8c9;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text-color);
  background: #ffffff;
}

.content-form textarea {
  resize: vertical;
  min-height: 140px;
}

.check-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
}

.check-line input {
  width: auto;
}

.form-submit {
  margin-top: 0.35rem;
  width: fit-content;
}

@media (max-width: 900px) {
  .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: 1fr;
  }

  .inner-page .page-content {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 58px;
    gap: 0.45rem;
    padding: 0.2rem 0;
  }

  .logo {
    width: 88px;
  }

  .main-nav {
    display: none;
  }

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

  .btn-header {
    font-size: 0.74rem;
    padding: 0.4rem 0.52rem;
    border-radius: 7px;
  }

  .hero {
    padding-top: 1.2rem;
  }

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

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

  .trust-section {
    grid-template-columns: 1fr;
  }

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