@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --bg: #120b1f;
  --bg-soft: #1b1031;
  --card: #1c1233;
  --accent: #ff7a59;
  --accent-2: #ffb347;
  --neon: #7df9ff;
  --uk-blue: #00247d;
  --uk-red: #cf142b;
  --text: #f7f4ff;
  --muted: #c7bddb;
  --line: rgba(255, 255, 255, 0.12);
  --success: #7dffb3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 122, 89, 0.25), transparent 45%),
    radial-gradient(circle at 76% 12%, rgba(125, 249, 255, 0.18), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='640'%3E%3Crect width='900' height='640' fill='%23160d2a'/%3E%3Ccircle cx='120' cy='120' r='70' fill='none' stroke='%23ff7a59' stroke-opacity='0.35' stroke-width='6'/%3E%3Crect x='620' y='90' width='160' height='110' rx='16' fill='none' stroke='%2300247d' stroke-opacity='0.28' stroke-width='6'/%3E%3Ccircle cx='700' cy='430' r='120' fill='none' stroke='%237df9ff' stroke-opacity='0.25' stroke-width='10'/%3E%3Cpath d='M70 520 C230 420 360 580 560 470' stroke='%23cf142b' stroke-opacity='0.35' stroke-width='8' fill='none'/%3E%3C/svg%3E");
  background-attachment: fixed;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.top-bar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
}

.badge {
  background: linear-gradient(120deg, var(--accent), var(--uk-red));
  color: #1a0d25;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  animation: pulse 3.6s ease-in-out infinite;
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  font-family: "Fredoka", cursive;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--accent-2);
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--uk-blue));
  color: #1a0d25;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(255, 122, 89, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.hero {
  padding: 80px 0 40px;
}

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

.hero h1 {
  font-family: "Fredoka", cursive;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  animation: float 8s ease-in-out infinite;
}

.section {
  padding: 50px 0;
}

.section h2 {
  font-family: "Fredoka", cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
}

.note {
  background: rgba(255, 122, 89, 0.12);
  border: 1px solid rgba(255, 122, 89, 0.35);
  padding: 18px 22px;
  border-radius: 16px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-stack {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(125, 249, 255, 0.08);
}

.rating-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.rating-bars {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.rating-bars span {
  display: block;
  height: 100%;
  background: linear-gradient(120deg, var(--accent), var(--neon));
}

.card .logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  background: rgba(125, 249, 255, 0.14);
  padding: 6px 12px;
  border-radius: 999px;
}

.logo-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(125, 249, 255, 0.35));
}

.meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.meta strong {
  color: var(--text);
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.comparison th {
  background: rgba(255, 255, 255, 0.06);
}

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

.step {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(125, 249, 255, 0.12);
  border: 1px solid rgba(125, 249, 255, 0.35);
}

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

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

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
}

.faq-item .answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .answer {
  display: block;
}

.regulators {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.regulator-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.regulator-logo {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 122, 89, 0.2);
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--accent-2);
}

.regulator-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.regulator-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.regulator-row .regulator-logo {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 50px;
  background: rgba(10, 6, 18, 0.65);
}

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

.footer-grid a {
  color: var(--muted);
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner,
.age-gate {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: #1d1333;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 20;
}

.age-gate {
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 6, 18, 0.85);
  padding: 20px;
  box-sizing: border-box;
}

.age-gate .age-box {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  text-align: center;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(207, 20, 43, 0.0);
  }
  50% {
    box-shadow: 0 0 16px rgba(207, 20, 43, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge,
  .hero-card {
    animation: none;
  }
}

.page-hero {
  padding: 60px 0 20px;
}

.page-hero h1 {
  font-family: "Fredoka", cursive;
}

.content-block {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 22px;
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
