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

:root {
  --bg: #0e0c1f;
  --surface: #16132f;
  --surface-2: #1d1a3a;
  --text: #f5f3ff;
  --muted: #b8b4d6;
  --accent: #ffb866;
  --accent-2: #6de1c4;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 16px 40px rgba(7, 6, 18, 0.45);
  --radius: 16px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 10% 10%, rgba(255, 184, 102, 0.15), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(109, 225, 196, 0.2), transparent 60%),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23131228'/%3E%3Cstop offset='1' stop-color='%231f1b40'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1400' height='900' fill='url(%23g)'/%3E%3Cg fill='none' stroke='%236de1c4' stroke-opacity='0.28' stroke-width='2'%3E%3Cpath d='M120 180 L240 300 L160 420' /%3E%3Cpath d='M1080 140 L1220 260 L1140 380' /%3E%3C/g%3E%3Cg fill='%23ffb866' fill-opacity='0.15'%3E%3Ccircle cx='260' cy='640' r='90'/%3E%3Ccircle cx='1160' cy='660' r='70'/%3E%3C/g%3E%3Cg stroke='%235b4fe0' stroke-opacity='0.3' stroke-width='2'%3E%3Ccircle cx='700' cy='180' r='120'/%3E%3Ccircle cx='940' cy='520' r='150'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(26, 56, 122, 0.08),
      transparent 40%
    ),
    linear-gradient(330deg, rgba(195, 28, 48, 0.08), transparent 45%);
  background-size: 140% 140%;
  pointer-events: none;
  z-index: -1;
  animation: drift 21s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -10px, 0);
  }
}

body.overlay-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(14, 12, 31, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 184, 102, 0.9), rgba(109, 225, 196, 0.9));
  color: #1b1337;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.age-pill {
  background: rgba(255, 184, 102, 0.2);
  border: 1px solid rgba(255, 184, 102, 0.4);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.hero {
  padding: 64px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-card {
  background: rgba(22, 19, 47, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(14, 12, 31, 0.6);
  color: var(--text);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(109, 225, 196, 0.6);
  border-color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent-2);
}

h1,
h2,
h3 {
  margin: 12px 0;
}

h1 {
  font-size: clamp(2rem, 2vw + 1.6rem, 3rem);
}

p {
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 14px;
}

.section {
  padding: 28px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.casino-card {
  background: rgba(22, 19, 47, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.casino-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(109, 225, 196, 0.14);
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.4px;
  width: fit-content;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  padding: 6px;
  background: rgba(14, 12, 31, 0.7);
  border: 1px solid var(--line);
}

.logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 184, 102, 0.2);
  color: var(--accent);
  border: 1px solid rgba(255, 184, 102, 0.4);
  font-weight: 700;
  font-size: 0.85rem;
}

.meta-list {
  display: grid;
  gap: 6px;
  font-size: 0.93rem;
  color: var(--muted);
}

.trust-index {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.trust-shield {
  width: 24px;
  height: 24px;
  fill: var(--accent-2);
}

.trust-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.7rem;
}

.trust-score {
  font-weight: 700;
  color: var(--text);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb866, #f28bff);
  color: #1c1435;
  font-weight: 700;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.info-card {
  padding: 18px;
  background: rgba(29, 26, 58, 0.85);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(22, 19, 47, 0.9);
  border: 1px solid var(--line);
}

.comparison th,
.comparison td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.comparison th {
  color: var(--accent-2);
  font-weight: 600;
}

.comparison tr:last-child td {
  border-bottom: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 184, 102, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(22, 19, 47, 0.82);
  border: 1px solid var(--line);
}

.regulators {
  display: grid;
  gap: 12px;
  background: rgba(29, 26, 58, 0.9);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 18px;
}

.reg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reg-logos img {
  width: 90px;
  height: 42px;
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  margin-top: 28px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.small {
  font-size: 0.85rem;
}

.badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 20, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

.overlay.active {
  display: flex;
}

.overlay-card {
  background: #1a1636;
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 92vw);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(22, 19, 47, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: none;
  z-index: 40;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 18px;
}

.list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}

.bg {
  background-image: url("../../../../assets/backgrounds/bg.png");
  background-size: cover;
  background-position: center;
}
