:root {
  --header-footer-bg: #022244;
  --accent: #ee9317;
  --main-bg: #090b10;
  --card-bg: #121723;
  --text-main: #f6f7fb;
  --text-muted: #cad3e2;
  --border-soft: rgba(255, 255, 255, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: Verdana, Geneva, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 10% 10%, #14203c 0%, transparent 30%),
    radial-gradient(circle at 85% 0%, #1d2140 0%, transparent 35%), var(--main-bg);
  line-height: 1.6;
  position: relative;
}

h1,
h2,
h3 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  letter-spacing: 0.02em;
}

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

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

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

.bg-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-left {
  top: 170px;
  left: -100px;
  background: #ee9317;
}

.bg-glow-right {
  top: 55%;
  right: -100px;
  background: #1d5bc0;
}

.site-header,
.site-footer {
  background: var(--header-footer-bg);
}

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

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

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-nav a {
  font-weight: 700;
  color: #e6efff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn-header {
  background: var(--accent);
  color: #111;
  min-width: 88px;
  padding: 0.55rem 0.95rem;
  font-size: 0.95rem;
}

main,
.page-updated {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 2.5rem 0 1.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.hero-banner {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

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

.btn-cta {
  background: var(--accent);
  color: #0f1523;
  font-size: 1.12rem;
  padding: 0.9rem 2.1rem;
  box-shadow: 0 0 0 rgba(238, 147, 23, 0.45);
}

.pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 147, 23, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(238, 147, 23, 0);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 147, 23, 0);
    transform: scale(1);
  }
}

section {
  padding: 1.85rem 0;
}

section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

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

.game-card {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  background: #0d1320;
}

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

.seo {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.04));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo h3 {
  color: #e2eaff;
  margin: 1.1rem 0 0.6rem;
}

.seo p {
  color: #d7e0f1;
}

.form-card {
  margin: 0.8rem 0 1.4rem;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(10, 17, 31, 0.78);
}

.form-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

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

.site-form label {
  color: #e6ecfb;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-form input,
.site-form textarea {
  width: 100%;
  background: #0d1320;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.site-form input:focus,
.site-form textarea:focus {
  outline: 2px solid rgba(238, 147, 23, 0.45);
  outline-offset: 1px;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
}

.site-form .btn-cta {
  margin-top: 0.2rem;
  justify-self: start;
}

.content-section {
  margin-top: 1.6rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.content-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  margin: 0.3rem 0 0.9rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.seo ul,
.seo ol {
  margin: 0.6rem 0 1.15rem 1.25rem;
  color: var(--text-muted);
}

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

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

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

th {
  background: rgba(2, 34, 68, 0.65);
}

.logo-grid {
  display: grid;
  gap: 0.8rem;
}

.payment-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.payment-grid img,
.trust-grid img,
.provider-grid img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  background: #0d1320;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.55rem;
}

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

.reviews-grid blockquote {
  margin: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1rem;
  color: #eaf0ff;
}

.reviews-grid cite {
  display: block;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 700;
}

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

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--card-bg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #f2f6ff;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

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

.page-updated {
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-updated p {
  margin: 0;
  text-align: center;
  color: #dce6fb;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 1.4rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-block h2,
.provider-block h2 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin: 1.2rem 0;
}

.footer-links a {
  color: #eaf0ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  margin: 0.2rem 0 1.1rem;
}

.social-links a {
  color: #f4c57f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.provider-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.copyright {
  margin: 1rem 0 0;
  text-align: center;
  color: #b9caea;
  font-size: 0.92rem;
}

.section-reveal {
  animation: fade-in-up 0.6s ease both;
}

.section-reveal:nth-of-type(2) {
  animation-delay: 0.1s;
}

.section-reveal:nth-of-type(3) {
  animation-delay: 0.2s;
}

.section-reveal:nth-of-type(4) {
  animation-delay: 0.3s;
}

.section-reveal:nth-of-type(5) {
  animation-delay: 0.4s;
}

.section-reveal:nth-of-type(6) {
  animation-delay: 0.5s;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 768px) {
  .site-header {
    padding: 0.2rem 0;
  }

  .header-inner {
    min-height: 52px;
    gap: 0.5rem;
  }

  .brand img {
    width: 92px;
    height: 28px;
  }

  .header-nav {
    display: none;
  }

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

  .btn-header {
    min-width: 66px;
    padding: 0.34rem 0.62rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 1.25rem;
  }

  .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;
  }

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