:root {
  --color-midnight: #07101f;
  --color-deep: #0b1630;
  --color-card: #0f1e3a;
  --color-ice: #4dd8f5;
  --color-ice-dim: #2ab8d8;
  --color-silver: #b8d0e8;
  --color-frost: #e2f2fc;
  --color-accent: #7ee8fa;
  --color-gold: #f5c842;
}

* { box-sizing: border-box; }

body {
  background-color: var(--color-midnight);
  color: var(--color-frost);
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.7;
  margin: 0;
}

.site-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* NAV */
.site-nav {
  background: rgba(7,16,31,0.97);
  border-bottom: 1px solid rgba(77,216,245,0.18);
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ice);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(77,216,245,0.6);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--color-ice); }

.nav-cta {
  background: linear-gradient(135deg, var(--color-ice), var(--color-ice-dim));
  color: #07101f !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; }

.burger {
  display: none;
  background: none;
  border: 2px solid var(--color-ice);
  border-radius: 5px;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
  flex-direction: column;
  gap: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ice);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0b1630;
  border-top: 1px solid rgba(77,216,245,0.2);
  padding: 1rem 1.5rem;
  gap: 0.75rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--color-silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(77,216,245,0.08);
}

.mobile-menu a:hover { color: var(--color-ice); }

/* CTA as a full-width button in the mobile drawer */
.mobile-menu a.mobile-menu-cta {
  border-bottom: none;
  margin-top: 0.35rem;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(77, 216, 245, 0.28);
  text-align: center;
}

.mobile-menu a.mobile-menu-cta:hover {
  color: #07101f !important;
  opacity: 0.92;
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* HERO */
.hero-section {
  min-height: 88vh;
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,16,31,0.82) 0%, rgba(11,22,48,0.75) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 30px rgba(77,216,245,0.5);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-h1 span { color: var(--color-ice); }

.bonus-badge {
  background: linear-gradient(135deg, rgba(77,216,245,0.15), rgba(11,22,48,0.9));
  border: 2px solid var(--color-ice);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: inline-block;
  box-shadow: 0 0 40px rgba(77,216,245,0.2);
}

.bonus-badge strong {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--color-gold);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(245,200,66,0.5);
}

.bonus-badge p {
  color: var(--color-frost);
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-ice), var(--color-ice-dim));
  color: #07101f;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem 2.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(77,216,245,0.35);
  margin: 0.5rem;
}

.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(77,216,245,0.5); }

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-ice);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--color-ice);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin: 0.5rem;
}

.cta-secondary:hover { background: var(--color-ice); color: #07101f; }

.disclaimer {
  font-size: 0.72rem;
  color: rgba(184,208,232,0.65);
  margin-top: 0.75rem;
}

/* MARQUEE */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}

.marquee-wrap { overflow: hidden; }

/* FROST SPARKLE ANIMATION */
@keyframes frost-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(77,216,245,0.25); }
  50% { box-shadow: 0 0 36px rgba(77,216,245,0.55); }
}

.frost-card {
  background: var(--color-card);
  border: 1px solid rgba(77,216,245,0.2);
  border-radius: 12px;
  animation: frost-pulse 4s ease-in-out infinite;
  transition: transform 0.25s;
}

.frost-card:hover { transform: translateY(-4px); }

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-ice);
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 14px rgba(77,216,245,0.35);
}

.section-sub {
  text-align: center;
  color: var(--color-silver);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.section-pad { padding: 4rem 0; }

/* Flex + justify-content:center: card row stays visually centered (CSS Grid 1fr tracks stretch to full width) */
.grid-games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
}

.game-card {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: calc(50% - 0.625rem);
  max-width: 180px;
  background: var(--color-card);
  border: 1px solid rgba(77,216,245,0.18);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.22s;
}

@media (min-width: 768px) {
  .game-card {
    width: calc(33.333% - 0.85rem);
    max-width: 180px;
  }
}

@media (min-width: 1024px) {
  .game-card {
    width: 180px;
    max-width: none;
  }
}

.game-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.game-card:hover { transform: translateY(-3px); }

.game-card-body { padding: 0.75rem; }

.game-card-body h3 {
  font-size: 0.82rem;
  color: var(--color-frost);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.btn-sm {
  display: inline-block;
  background: var(--color-ice);
  color: #07101f;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-sm:hover { opacity: 0.82; }

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--color-card);
  border: 1px solid rgba(77,216,245,0.18);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-badge {
  background: var(--color-ice);
  color: #07101f;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0 16px rgba(77,216,245,0.4);
}

.step-card h3 {
  color: var(--color-ice);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p { color: var(--color-silver); font-size: 0.9rem; margin: 0; }

/* PAYMENTS TABLE */
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pay-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.pay-table th {
  background: rgba(77,216,245,0.12);
  color: var(--color-ice);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(77,216,245,0.25);
}

.pay-table td {
  padding: 0.7rem 1rem;
  color: var(--color-frost);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(77,216,245,0.08);
  vertical-align: middle;
}

.pay-table tr:hover td { background: rgba(77,216,245,0.05); }

/* REVIEW BLOCKS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-block {
  background: var(--color-card);
  border: 1px solid rgba(77,216,245,0.18);
  border-radius: 12px;
  padding: 1.75rem;
}

.review-block h2 {
  color: var(--color-ice);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(77,216,245,0.2);
}

.review-block p { color: var(--color-silver); font-size: 0.88rem; line-height: 1.7; }

.review-block ul { color: var(--color-silver); font-size: 0.88rem; padding-left: 1.2rem; line-height: 1.8; }

.word-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.word-cloud span {
  background: rgba(77,216,245,0.1);
  border: 1px solid rgba(77,216,245,0.25);
  color: var(--color-ice);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}

.word-cloud span:hover { background: rgba(77,216,245,0.22); }

/* PROMOS */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.promo-card {
  background: var(--color-card);
  border: 1px solid rgba(77,216,245,0.2);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

.promo-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(77,216,245,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--color-ice);
}

.promo-card h3 { color: var(--color-frost); font-weight: 800; font-size: 1.05rem; margin-bottom: 0.5rem; }
.promo-card p { color: var(--color-silver); font-size: 0.88rem; margin-bottom: 1.25rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 860px; margin: 0 auto; }

.faq-item {
  background: var(--color-card);
  border: 1px solid rgba(77,216,245,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  color: var(--color-frost);
  font-weight: 700;
  font-size: 0.95rem;
  user-select: none;
}

.faq-q i { color: var(--color-ice); font-size: 0.8rem; transition: transform 0.2s; }

.faq-a {
  display: none;
  padding: 0 1.4rem 1.1rem;
  color: var(--color-silver);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

/* FOOTER */
.site-footer {
  background: #050d1a;
  border-top: 1px solid rgba(77,216,245,0.12);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--color-ice);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col p, .footer-col a {
  color: rgba(184,208,232,0.65);
  font-size: 0.8rem;
  display: block;
  text-decoration: none;
  line-height: 1.9;
}

.footer-col a:hover { color: var(--color-ice); }

.footer-bottom {
  border-top: 1px solid rgba(77,216,245,0.08);
  padding-top: 1.25rem;
  text-align: center;
  color: rgba(184,208,232,0.45);
  font-size: 0.75rem;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(184,208,232,0.4);
  color: rgba(184,208,232,0.65);
  font-weight: 900;
  font-size: 0.8rem;
  vertical-align: middle;
  margin: 0 0.4rem;
}

.rg-icons { display: flex; align-items: center; gap: 1rem; justify-content: center; margin: 0.75rem 0; }
.rg-icons a { color: rgba(184,208,232,0.55); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.rg-icons a:hover { color: var(--color-ice); }

/* PROSE */
.prose {
  color: var(--color-silver);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 100%;
}

.prose h2 {
  color: var(--color-ice);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 1rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(77,216,245,0.18);
}

.prose h3 {
  color: var(--color-frost);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}

.prose p { margin-bottom: 1rem; color: var(--color-silver); }

.prose a { color: var(--color-ice); text-decoration: underline; }

.prose ul, .prose ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-silver);
}

.prose li { margin-bottom: 0.4rem; }

.prose blockquote {
  border-left: 4px solid var(--color-ice);
  padding: 0.75rem 1.25rem;
  background: rgba(77,216,245,0.06);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  color: var(--color-frost);
  font-style: italic;
}

.prose img {
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(77,216,245,0.18);
  margin: 1.25rem 0;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}

.prose th {
  background: rgba(77,216,245,0.1);
  color: var(--color-ice);
  padding: 0.65rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 2px solid rgba(77,216,245,0.25);
}

.prose td {
  padding: 0.6rem 1rem;
  color: var(--color-frost);
  border-bottom: 1px solid rgba(77,216,245,0.08);
  font-size: 0.87rem;
}

.prose strong { color: var(--color-frost); font-weight: 700; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,216,245,0.25), transparent);
  margin: 0;
}

@keyframes parallax-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
