:root {
  --bg: #12093a;
  --bg-soft: #181051;
  --panel: #261a73;
  --panel-2: #1b1258;
  --panel-3: #2f2290;
  --line: rgba(182, 196, 255, 0.12);
  --text: #f6f7ff;
  --muted: #c1c7ef;
  --green: #39ef67;
  --green-2: #8dff9d;
  --shadow: 0 18px 40px rgba(6, 3, 24, 0.45);
  --radius: 20px;
  --container: 1020px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(85, 56, 214, 0.4), transparent 28%),
    linear-gradient(180deg, #13093d 0%, #100733 100%);
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 28px 0 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(16, 8, 51, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand-logo,
.footer-logo {
  width: 156px;
  height: auto;
}

.main-nav,
.footer-nav,
.header-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a,
.footer-nav a,
.login-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover,
.footer-nav a:hover,
.login-link:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #0a1831;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(57, 239, 103, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(57, 239, 103, 0.42);
  filter: brightness(1.03);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-full {
  width: 100%;
}

.panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.badge-soft {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dde2ff;
  font-size: 0.88rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 5vw, 3.45rem);
  line-height: 1.06;
}

h2 {
  margin-bottom: 16px;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-bonus {
  margin-bottom: 20px;
  color: #dbe0ff;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-note,
.section-intro,
.content-block p,
.helper-text,
td,
details p,
.step-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 208, 70, 0.38), transparent 14%),
    radial-gradient(circle at 60% 62%, rgba(110, 225, 255, 0.18), transparent 20%),
    linear-gradient(135deg, #4436b7, #261c7a);
}

.hero-media img {
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.3));
}

.game-grid {
  display: grid;
  gap: 16px;
}

.game-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.game-card,
.image-tile,
.step-card,
.auth-box,
details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #332591, #221768);
}

.game-card {
  padding: 12px;
}

.game-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}

.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 24, 0.06), rgba(5, 8, 24, 0.74));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.game-thumb img,
.image-tile img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #0b1730;
  font-size: 0.78rem;
  font-weight: 800;
}

.game-hover-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.game-hover-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 138px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #0a1831;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(57, 239, 103, 0.34);
  transform: translateY(14px) scale(0.94);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #0a1831;
}

.game-card:hover .game-thumb::after,
.game-card:focus-within .game-thumb::after {
  opacity: 1;
}

.game-card:hover .game-hover-link,
.game-card:focus-within .game-hover-link {
  opacity: 1;
}

.game-card:hover .game-hover-button,
.game-card:focus-within .game-hover-button {
  transform: translateY(0) scale(1);
  box-shadow: 0 16px 36px rgba(57, 239, 103, 0.42);
}

.game-meta {
  padding: 12px 4px 4px;
  text-align: center;
}

.game-meta strong {
  display: block;
  margin-bottom: 6px;
}

.game-meta span {
  color: #8dff9d;
  font-weight: 700;
}

.section-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  margin: 18px auto 0;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #09162e;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(57, 239, 103, 0.32);
  overflow: hidden;
  animation: ctaPulse 1.9s ease-in-out infinite;
}

.section-cta::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -38%;
  width: 34%;
  height: 140%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  animation: ctaShine 2.8s ease-in-out infinite;
}

.section-cta:hover,
.section-cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(57, 239, 103, 0.4);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(10, 5, 38, 0.1);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

th {
  color: #dbe0ff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

td strong {
  color: #fff;
}

.image-strip {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.image-tile {
  overflow: hidden;
}

.image-tile figcaption {
  padding: 10px 12px 12px;
  color: #dbe0ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.content-block {
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list div {
  position: relative;
  padding-left: 24px;
}

.check-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  box-shadow: 0 0 0 4px rgba(57, 239, 103, 0.12);
}

.feature-image {
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.feature-image:last-child {
  margin-bottom: 0;
  margin-top: 18px;
}

.section-intro {
  max-width: 72ch;
  margin: 0 auto 18px;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.step-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.auth-box {
  padding: 20px;
  background: linear-gradient(180deg, #1f145d, #100a36);
}

.auth-box h3 {
  text-align: center;
}

.promo-box {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(84, 236, 122, 0.14), rgba(96, 137, 255, 0.16));
  color: #e4e8ff;
  font-size: 0.92rem;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.helper-text {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.84rem;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 10px;
  flex-wrap: wrap;
}

.store-badges img {
  height: 44px;
  width: auto;
}

.login-section {
  margin-top: 28px;
}

.subheading {
  text-align: left;
  margin-bottom: 2px;
}

.payment-logos,
.footer-payments {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.payment-logos {
  margin-bottom: 18px;
}

.payment-logos img,
.footer-payments img {
  width: 100%;
  max-width: 112px;
  height: 32px;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(1.04);
}

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

details {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.03);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-bottom: 18px;
}

.site-footer {
  margin-top: 34px;
  padding: 34px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.copyright {
  margin: 0;
  color: #98a1da;
  text-align: center;
  font-size: 0.85rem;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(57, 239, 103, 0.32);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 18px 38px rgba(57, 239, 103, 0.44);
  }
}

@keyframes ctaShine {
  0% {
    left: -42%;
  }
  55%, 100% {
    left: 126%;
  }
}

@media (max-width: 980px) {
  .header-inner,
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .hero-panel,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .game-grid-featured,
  .image-strip-four,
  .payment-logos,
  .footer-payments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .panel {
    padding: 18px;
  }

  .main-nav,
  .footer-nav,
  .header-actions,
  .footer-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-media {
    min-height: 230px;
    padding: 18px;
  }

  .hero-media img {
    max-height: 210px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-bonus {
    font-size: 1.08rem;
  }

  .game-grid-featured,
  .image-strip-four,
  .payment-logos,
  .footer-payments {
    grid-template-columns: 1fr;
  }

  .section-cta {
    min-width: 200px;
    padding: 15px 26px;
  }

  .brand-logo,
  .footer-logo {
    width: 140px;
  }

  .store-badges img {
    width: 170px;
    height: auto;
  }

  table {
    min-width: 640px;
  }
}

@media (hover: none) {
  .game-thumb::after {
    opacity: 1;
    background: linear-gradient(180deg, rgba(5, 8, 24, 0), rgba(5, 8, 24, 0.72));
  }

  .game-hover-link {
    opacity: 1;
    align-items: flex-end;
    padding-bottom: 16px;
  }

  .game-hover-button {
    min-width: 124px;
    padding: 12px 20px;
    transform: none;
  }
}
