:root {
  --header-footer-bg: #262a33;
  --primary-btn: #b30685;
  --cta-btn: #b30685;
  --main-bg: #181920;
  --surface-bg: #20232c;
  --surface-border: #303645;
  --text-main: #f2f4f8;
  --text-muted: #bec3d1;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--main-bg);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

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

.section {
  padding: 56px 0;
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 10px 0;
}

.brand img {
  width: 150px;
  height: 48px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

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

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.btn-header {
  background: var(--primary-btn);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.btn-header:hover,
.btn-header:focus-visible,
.btn-cta:hover,
.btn-cta:focus-visible {
  filter: brightness(1.08);
}

.hero {
  padding: 48px 0 24px;
}

.hero-inner {
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.hero-banner {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.btn-cta {
  margin: 26px auto 0;
  background: var(--cta-btn);
  color: #fff;
  font-size: 1.15rem;
  padding: 14px 34px;
  border-radius: 14px;
}

.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(179, 6, 133, 0.75);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 18px rgba(179, 6, 133, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(179, 6, 133, 0);
  }
}

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

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

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

.seo-content {
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 24px;
}

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

.seo-content ul,
.seo-content ol {
  padding-left: 22px;
}

.seo-image {
  margin: 16px 0 20px;
}

.seo-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
}

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

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

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

th {
  color: #fff;
  background: #242938;
}

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

.payments-grid img {
  width: 100%;
  height: 66px;
  object-fit: contain;
  padding: 8px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
}

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

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

.review-card h3 {
  margin-bottom: 10px;
}

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

.accordion-item {
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--surface-bg);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-panel p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--text-muted);
}

.updated-section {
  padding: 16px 0 24px;
}

#page-updated {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
}

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

.footer-inner h2 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid a {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px;
}

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

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 24px 0;
}

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

.footer-policies a:hover,
.footer-policies a:focus-visible {
  color: #fff;
}

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

.providers-grid img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

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

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

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

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

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

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

  .brand img {
    width: 90px;
    height: 30px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .btn-header {
    padding: 7px 10px;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .section {
    padding: 44px 0;
  }

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

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

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

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

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