:root {
  --void: #05060d;
  --surface: #0f1424;
  --elevated: #161d32;
  --card: #1a2238;
  --line: rgba(168, 200, 255, 0.12);
  --text: #eef2ff;
  --muted: #94a3c8;
  --accent: #7c3aed;
  --accent-2: #22d3ee;
  --accent-glow: rgba(124, 58, 237, 0.45);
  --cyan-glow: rgba(34, 211, 238, 0.35);
  --ok: #34d399;
  --radius: 16px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --space: clamp(1rem, 3vw, 2rem);
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--void);
  overflow-x: hidden;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.aurora-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 15% -20%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 10%, rgba(34, 211, 238, 0.14), transparent 50%),
    radial-gradient(circle at 50% 110%, rgba(99, 102, 241, 0.12), transparent 45%);
}

.spin-slow {
  animation: spin-ccw 32s linear infinite;
}

.spin-med {
  animation: spin-cw 22s linear infinite;
}

.spin-fast {
  animation: spin-cw 12s linear infinite reverse;
}

@keyframes spin-cw {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-ccw {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--accent-glow), 0 0 28px var(--cyan-glow);
  }
  50% {
    box-shadow: 0 0 0 10px transparent, 0 0 48px var(--accent-glow);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.04);
  }
}

.decor-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(34, 211, 238, 0.22);
  pointer-events: none;
  animation: orbit-pulse 5s ease-in-out infinite;
}

.decor-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.28;
  pointer-events: none;
  animation: float-y 8s ease-in-out infinite;
}

a {
  color: #a5b4fc;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #c7d2fe;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.top-strip {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(15, 20, 36, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem var(--space);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-strip img {
  width: 26px;
  height: auto;
  vertical-align: middle;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--space);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 13, 0.78);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-toggle {
  display: none;
  background: var(--elevated);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  font-family: inherit;
  cursor: pointer;
}

.nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.nav-main a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--text);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .nav-main {
    width: 100%;
    display: none;
  }

  .nav-main.is-open {
    display: block;
  }

  .nav-main ul {
    flex-direction: column;
    padding: 0.5rem 0 1rem;
  }
}

.hero {
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr min(340px, 38vw);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-inner {
  position: relative;
  max-width: 38rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.05rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero h1 .hl {
  background: linear-gradient(105deg, #c4b5fd, #22d3ee, #a78bfa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.65rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.65rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  box-shadow: 0 6px 32px var(--accent-glow);
  animation: pulse-glow 3.2s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(34, 211, 238, 0.45);
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  border: 2px solid rgba(124, 58, 237, 0.25);
  border-radius: 50%;
}

.hero-ring.r2 {
  width: min(220px, 58vw);
  height: min(220px, 58vw);
  border-color: rgba(34, 211, 238, 0.2);
}

.hero-chip {
  position: relative;
  z-index: 2;
  padding: 1rem 1.25rem;
  background: rgba(22, 29, 50, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero-chip strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
}

.section-head {
  margin-bottom: 1.75rem;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head h2 .hl-pink {
  color: #f472b6;
}

.section-head h2 .hl-mint {
  color: #2dd4bf;
}

.section-head p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 40rem;
}

.offer-card {
  background: linear-gradient(160deg, rgba(26, 34, 56, 0.95), rgba(15, 20, 36, 0.98));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.35rem, 4vw, 2.1rem);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: -50% 30% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 68%);
  pointer-events: none;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40%;
  height: 55%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 65%);
  pointer-events: none;
}

.offer-card img {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  position: relative;
  z-index: 1;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
  position: relative;
  z-index: 1;
}

.offer-card .tagline {
  color: var(--muted);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.offer-card .btn-offer {
  background: linear-gradient(135deg, #db2777, #7c3aed);
  color: #fff;
  box-shadow: 0 8px 28px rgba(219, 39, 119, 0.35);
  position: relative;
  z-index: 1;
}

.offer-foot {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1.2rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(34, 211, 238, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.content-page {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 8vw, 4rem);
}

.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  margin: 0 0 1rem;
  font-weight: 800;
}

.content-page h2 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  margin: 2rem 0 0.65rem;
  font-weight: 700;
}

.content-page h3 {
  font-size: 1.08rem;
  margin: 1.5rem 0 0.5rem;
  color: #a5b4fc;
  font-weight: 600;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.content-page ul {
  padding-left: 1.25rem;
}

.site-footer {
  margin-top: 2.5rem;
  padding: 2.5rem var(--space) 1.75rem;
  background: #070a14;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 0.85rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--text);
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-row a {
  display: block;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.partner-row a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner-row img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.partner-row a[href*="gamblingcommission"] img {
  height: 44px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-bottom .age-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-bottom img.badge-18 {
  width: 30px;
  height: auto;
  vertical-align: middle;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 12, 0.82);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  transform: scale(0.94) translateY(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.overlay.is-visible .modal {
  transform: scale(1) translateY(0);
}

.modal-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 14px;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.modal p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(22, 29, 50, 0.96);
  border-top: 1px solid var(--line);
  padding: 1rem var(--space);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(12px);
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  max-width: 920px;
}

.cookie-bar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.captcha-modal .modal {
  max-width: 400px;
}

.captcha-stage {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--void);
}

.captcha-stage canvas {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.captcha-slider-wrap {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 0.85rem;
  padding: 0 2px;
}

.captcha-slider-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.captcha-slider-wrap input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.35),
    rgba(34, 211, 238, 0.25)
  );
  border: 1px solid var(--line);
  cursor: pointer;
}

.captcha-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #22d3ee, #7c3aed);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(34, 211, 238, 0.45);
  cursor: grab;
}

.captcha-slider-wrap input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
}

.captcha-slider-wrap input[type="range"]::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.35),
    rgba(34, 211, 238, 0.25)
  );
  border: 1px solid var(--line);
}

.captcha-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #22d3ee, #7c3aed);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(34, 211, 238, 0.45);
  cursor: grab;
}

.captcha-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.captcha-status {
  font-size: 0.85rem;
  min-height: 1.25rem;
  margin-bottom: 0.5rem;
}

.captcha-status.ok {
  color: var(--ok);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}

.success-banner {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #6ee7b7;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: none;
}

.success-banner.is-visible {
  display: block;
}

.to-top {
  text-align: center;
  margin-bottom: 1rem;
}

.to-top a {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rich-text h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 1.5rem 0 0.5rem;
  color: #a5b4fc;
  font-weight: 600;
}

.rich-text p {
  margin: 0 0 1rem;
  color: var(--muted);
}
