:root {
  --header-footer: #150f04;
  --accent: #c5b480;
  --background: #0e0a02;
  --surface: #1b1307;
  --surface-soft: #241a0b;
  --text: #f6efe1;
  --muted: #d7c7a0;
  --border: rgba(197, 180, 128, 0.3);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Gill Sans", "Trebuchet MS", Verdana, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(197, 180, 128, 0.12), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(197, 180, 128, 0.08), transparent 30%),
    var(--background);
  color: var(--text);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

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

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ffffff;
}

.auth-buttons {
  display: flex;
  gap: 0.6rem;
}

.header-btn {
  border: none;
  background: var(--accent);
  color: #241a06;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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);
}

main {
  padding: 2rem 0 0;
}

section {
  margin-bottom: 2.2rem;
}

.hero {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

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

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

.cta-button {
  margin: 1.4rem auto 0;
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #2a1d05;
  font-weight: 800;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(197, 180, 128, 0.75);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 180, 128, 0.65);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 14px rgba(197, 180, 128, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 180, 128, 0);
  }
}

.promo,
.games,
.seo,
.payments,
.reviews,
.faq {
  background: linear-gradient(150deg, rgba(36, 26, 11, 0.9), rgba(20, 14, 6, 0.9));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

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

.promo-card,
.review-card {
  background: rgba(14, 10, 2, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.promo-card h3,
.review-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.review-stars {
  margin: 0 0 0.55rem;
  letter-spacing: 0.08em;
  color: #f0d990;
  font-size: 1.05rem;
}

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

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

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

.seo ul,
.seo ol {
  margin: 0.7rem 0 1rem 1.2rem;
  padding-left: 0.2rem;
}

.seo-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 0.4rem 0 1rem;
  box-shadow: var(--shadow);
}

.form-card {
  margin: 1rem 0 1.4rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(14, 10, 2, 0.72);
}

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

.feature-form {
  display: grid;
  gap: 0.8rem;
}

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

.form-row label,
.form-check label {
  font-weight: 600;
  color: #f3e7ca;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #140d03;
  color: var(--text);
  padding: 0.62rem 0.7rem;
  font: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(197, 180, 128, 0.55);
  outline-offset: 1px;
}

.form-row textarea {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-submit {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #241a06;
  font-weight: 700;
  padding: 0.7rem 1.15rem;
  justify-self: start;
  cursor: pointer;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

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

th {
  background: rgba(197, 180, 128, 0.12);
}

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

.payment-grid img {
  background: #ffffff;
  border-radius: 10px;
  padding: 0.5rem;
  width: 100%;
  height: 70px;
  object-fit: contain;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(14, 10, 2, 0.7);
  padding: 0.2rem 0.8rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.65rem 0;
}

.faq-item p {
  margin: 0 0 0.7rem;
  color: #f1e6cb;
}

.update-strip {
  margin-bottom: 0;
  padding: 0.4rem 0;
  text-align: center;
  background: rgba(197, 180, 128, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.update-strip p {
  margin: 0.5rem 0;
}

.site-footer {
  background: var(--header-footer);
  padding: 1.6rem 0 1.2rem;
}

.footer-content {
  display: grid;
  gap: 1.3rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 190px));
  gap: 0.8rem;
}

.trust-grid a {
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.55rem;
}

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

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  font-size: 0.95rem;
}

.policy-links a {
  color: #e4d5ae;
  text-decoration: none;
}

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

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

.providers-grid img {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.45rem;
  height: 60px;
  width: 100%;
  object-fit: contain;
}

.copyright {
  margin: 0.2rem 0 0;
  font-size: 0.93rem;
  color: #e4d5ae;
}

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

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

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

@media (max-width: 768px) {
  .header-inner {
    min-height: 56px;
    gap: 0.55rem;
  }

  .logo {
    width: 92px;
  }

  .main-nav {
    display: none;
  }

  .auth-buttons {
    margin-left: auto;
    gap: 0.4rem;
  }

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

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

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

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

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

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

  .promo,
  .games,
  .seo,
  .payments,
  .reviews,
  .faq {
    padding: 1rem;
  }
}
