:root {
  --main-bg: #080d09;
  --header-footer-bg: #1e2018;
  --card-bg: #10160f;
  --card-bg-soft: #121a12;
  --line: rgba(208, 208, 208, 0.17);
  --text-main: #f4f7ee;
  --text-muted: #bcc7b6;
  --accent: #f66a0b;
  --login: #d0d0d0;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--main-bg);
  background-image: radial-gradient(circle at 5% 0%, rgba(246, 106, 11, 0.12), transparent 36%),
    radial-gradient(circle at 94% 10%, rgba(208, 208, 208, 0.1), transparent 30%),
    linear-gradient(180deg, #090f0a 0%, #080d09 60%, #070c08 100%);
  line-height: 1.65;
}

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

.section-spacing {
  padding: 64px 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", "Trebuchet MS", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

h4 {
  font-size: clamp(1.22rem, 2vw, 1.45rem);
  color: #ffe2cc;
}

p,
li,
td,
th,
summary,
a {
  font-size: 1.03rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-footer-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(208, 208, 208, 0.12);
}

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

.logo-link img {
  height: 58px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Barlow Condensed", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-login {
  background: #d0d0d0;
  color: #191d17;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-register {
  background: #f66a0b;
  color: #fff8f1;
  box-shadow: 0 12px 26px rgba(246, 106, 11, 0.33);
}

.hero {
  padding-top: 78px;
}

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

.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  text-transform: uppercase;
}

.hero-banner {
  margin: 28px auto 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(246, 106, 11, 0.28);
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  display: block;
}

.cta-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 34px;
  border-radius: 999px;
  background: #f66a0b;
  color: #fff8f1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Barlow Condensed", "Trebuchet MS", sans-serif;
  font-size: 1.22rem;
  box-shadow: 0 10px 28px rgba(246, 106, 11, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(246, 106, 11, 0.62);
  }

  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 18px rgba(246, 106, 11, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(246, 106, 11, 0);
  }
}

.games h2,
.payments h2,
.reviews h2,
.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

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

.game-card {
  background: linear-gradient(180deg, #141c14 0%, #111810 100%);
  border: 1px solid rgba(208, 208, 208, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.game-card h3 {
  margin: 10px 8px 12px;
  text-align: center;
  font-size: 1.08rem;
}

.prose-wrap {
  background: linear-gradient(180deg, rgba(16, 22, 15, 0.92) 0%, rgba(13, 19, 13, 0.92) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.prose-wrap h2 {
  color: #ffe7d4;
}

.prose-wrap h3 {
  margin-top: 30px;
  color: #ffd5b4;
}

.prose-wrap h4 {
  margin-top: 20px;
}

.prose-wrap p {
  margin: 0 0 12px;
  color: #e4ecdd;
}

.prose-wrap ul,
.prose-wrap ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.prose-wrap .source-number-list,
.prose-wrap .source-star-list {
  list-style: none;
  padding-left: 0;
}

.prose-wrap li {
  margin-bottom: 6px;
  color: #d8e2d2;
}

.content-image {
  margin: 18px 0 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(208, 208, 208, 0.2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.content-image img {
  width: 100%;
  display: block;
}

.content-image.wide img {
  max-height: 510px;
  object-fit: cover;
}

.table-scroll {
  margin: 16px 0 20px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(208, 208, 208, 0.18);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: rgba(7, 12, 8, 0.7);
}

th,
td {
  padding: 11px 13px;
  border-bottom: 1px solid rgba(208, 208, 208, 0.14);
  text-align: left;
}

th {
  color: #ffe0c8;
  background: rgba(246, 106, 11, 0.16);
}

td {
  color: #dce6d7;
}

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

.payment-card {
  background: linear-gradient(180deg, #151d15 0%, #111710 100%);
  border-radius: 14px;
  border: 1px solid rgba(208, 208, 208, 0.16);
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.payment-card img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

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

.review-card {
  background: linear-gradient(180deg, #151d15 0%, #111710 100%);
  border: 1px solid rgba(208, 208, 208, 0.16);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.review-card h3 {
  color: #ffd1ad;
  margin-bottom: 8px;
}

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

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(208, 208, 208, 0.2);
  border-radius: 12px;
  background: rgba(16, 22, 15, 0.9);
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Barlow Condensed", "Trebuchet MS", sans-serif;
  font-size: 1.24rem;
  color: #ffe0cb;
  letter-spacing: 0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 8px 0 0;
  color: #d7e1d1;
}

.updated-section {
  padding: 18px 0 26px;
}

.updated-section p {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  color: #d8e2d2;
}

.updated-section span {
  color: #ffd5b5;
  font-weight: 600;
}

.site-footer {
  background: #1e2018;
  border-top: 1px solid rgba(208, 208, 208, 0.16);
}

.footer-inner {
  padding: 28px 0 30px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.trust-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 62px;
  border-radius: 12px;
  border: 1px solid rgba(208, 208, 208, 0.16);
  background: rgba(7, 12, 8, 0.42);
  transition: transform 0.22s ease;
}

.trust-badges a:hover {
  transform: translateY(-2px);
}

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

.provider-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.provider-logos img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(7, 12, 8, 0.45);
  border: 1px solid rgba(208, 208, 208, 0.14);
  padding: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #d8ddd2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-color: #f66a0b;
  color: #ffddc2;
}

.copyright {
  text-align: center;
  margin: 0;
  color: #c3cabb;
}

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

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

@media (max-width: 800px) {
  .section-spacing {
    padding: 50px 0;
  }

  .header-inner {
    min-height: 84px;
  }

  .logo-link img {
    height: 48px;
  }

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

  .btn {
    min-width: 118px;
    padding: 10px 14px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0 14px;
  }

  .hero {
    padding-top: 34px;
  }

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

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

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

  .faq-list summary {
    font-size: 1.15rem;
  }
}
