@charset "UTF-8";

:root {
  --deep-blue: #0a1630;
  --navy: #0f2246;
  --ink: #e9eef7;
  --muted: #a8b7cf;
  --copper: #b87438;
  --copper-glow: rgba(184, 116, 56, 0.35);
  --panel: #12284f;
  --panel-dark: #0b1a35;
  --white: #ffffff;
  --uk-blue: #012169;
  --uk-red: #cf142b;
  --shadow: 0 20px 50px rgba(6, 11, 26, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--deep-blue);
  background-image:
    radial-gradient(circle at 10% 15%, rgba(184, 116, 56, 0.15), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(93, 140, 223, 0.2), transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='700' viewBox='0 0 1200 700'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%230b1c3a'/><stop offset='1' stop-color='%230a1630'/></linearGradient></defs><rect width='1200' height='700' fill='url(%23g)'/><g opacity='0.3' stroke='%23b87438' stroke-width='1.6' fill='none'><circle cx='250' cy='360' r='170'/><circle cx='250' cy='360' r='110'/><circle cx='920' cy='200' r='140'/></g><g opacity='0.22' fill='%23ffffff'><rect x='140' y='120' width='6' height='6'/><rect x='260' y='260' width='6' height='6'/><rect x='980' y='140' width='5' height='5'/><rect x='860' y='420' width='6' height='6'/><rect x='520' y='520' width='5' height='5'/></g><g opacity='0.25' fill='%23b87438'><rect x='480' y='260' width='70' height='100' rx='8'/><rect x='560' y='280' width='70' height='100' rx='8'/></g><g opacity='0.3' fill='%23012169'><circle cx='1030' cy='520' r='26'/><circle cx='980' cy='560' r='18'/></g></svg>");
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 18, 36, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 116, 56, 0.25);
}

.topbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  background: rgba(10, 22, 48, 0.95);
}

.topbar-link {
  color: var(--copper);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 60px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-name {
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-18 {
  border: 1px solid var(--copper);
  color: var(--copper);
  background: rgba(184, 116, 56, 0.1);
}

.topbar-text::after {
  content: " • UK";
  color: var(--uk-red);
  font-weight: 600;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  padding: 80px clamp(20px, 6vw, 80px) 40px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 0 0 16px;
}

.hero-content .lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--copper);
  margin-bottom: 12px;
}

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

.btn {
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--copper);
  color: #241508;
  box-shadow: 0 12px 25px rgba(184, 116, 56, 0.35);
}

.btn-secondary {
  background: rgba(184, 116, 56, 0.12);
  color: var(--white);
  border: 1px solid rgba(184, 116, 56, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(232, 237, 247, 0.2);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero-visual {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.vault-door {
  width: min(320px, 80vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1f3d6b, #0b1a35);
  border: 2px solid rgba(184, 116, 56, 0.4);
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35), var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vaultPulse 6s ease-in-out infinite;
}

.vault-ring {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  border: 2px dashed rgba(184, 116, 56, 0.4);
  animation: vaultSpin 18s linear infinite;
}

.vault-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-cards {
  display: grid;
  gap: 10px;
}

.mini-card {
  background: rgba(18, 40, 79, 0.8);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(184, 116, 56, 0.3);
  font-size: 0.9rem;
  animation: floatCard 7s ease-in-out infinite;
}

.disclosure {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--muted);
  border-left: 3px solid var(--copper);
  padding-left: 12px;
}

.section {
  padding: 40px clamp(20px, 6vw, 80px);
}

.section-head {
  max-width: 700px;
  margin-bottom: 24px;
}

.section h2 {
  margin-top: 0;
}

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

.panel {
  background: rgba(18, 40, 79, 0.85);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel-copper {
  border: 1px solid rgba(184, 116, 56, 0.4);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--copper);
}

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

.info-card {
  background: rgba(15, 34, 70, 0.9);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(232, 237, 247, 0.08);
}

.partners {
  background: rgba(11, 26, 53, 0.7);
}

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

.casino-card {
  background: rgba(18, 40, 79, 0.95);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(184, 116, 56, 0.35);
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-weight: 700;
  color: var(--white);
  background: rgba(232, 237, 247, 0.08);
  padding: 6px;
  width: 76px;
  height: 46px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.card-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.card-warning {
  font-size: 0.85rem;
  color: var(--copper);
}

.rating-diamonds {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.rating-label {
  font-weight: 700;
  color: var(--white);
  margin-right: 2px;
}

.diamond {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: 1px solid rgba(184, 116, 56, 0.6);
  background: transparent;
}

.diamond.filled {
  background: var(--copper);
  box-shadow: 0 0 6px var(--copper-glow);
}

.rating-value {
  color: var(--copper);
  font-weight: 600;
}

.comparison {
  background: linear-gradient(120deg, rgba(11, 26, 53, 0.9), rgba(18, 40, 79, 0.9));
}

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

.comparison-grid div {
  background: rgba(15, 34, 70, 0.95);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(232, 237, 247, 0.08);
}

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

.faq details {
  background: rgba(18, 40, 79, 0.85);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(232, 237, 247, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

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

.reg-card {
  background: rgba(15, 34, 70, 0.95);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(184, 116, 56, 0.3);
  display: grid;
  gap: 10px;
  text-align: left;
}

.reg-logo {
  width: 88px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(184, 116, 56, 0.4);
  background: rgba(8, 18, 36, 0.6);
  padding: 6px 10px;
  object-fit: contain;
}

.page-hero {
  padding: 70px clamp(20px, 6vw, 80px) 30px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin-top: 28px;
}

.contact-list,
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 8px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(232, 237, 247, 0.2);
  background: rgba(8, 18, 36, 0.7);
  color: var(--white);
}

.note {
  color: var(--muted);
}

.site-footer {
  padding: 40px clamp(20px, 6vw, 80px);
  background: rgba(8, 18, 36, 0.98);
  border-top: 1px solid rgba(184, 116, 56, 0.2);
}

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

.footer-links,
.footer-regs {
  display: grid;
  gap: 10px;
}

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

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 237, 247, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92vw);
  background: rgba(15, 34, 70, 0.95);
  border: 1px solid rgba(184, 116, 56, 0.35);
  padding: 18px;
  border-radius: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 26, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.age-gate.show {
  display: flex;
}

.age-card {
  background: rgba(15, 34, 70, 0.98);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(184, 116, 56, 0.45);
  max-width: 420px;
  text-align: center;
}

@keyframes vaultSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes vaultPulse {
  0%,
  100% {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35), var(--shadow);
  }
  50% {
    box-shadow: inset 0 0 26px rgba(184, 116, 56, 0.45), 0 18px 40px rgba(6, 11, 26, 0.4);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .vault-door,
  .vault-ring,
  .mini-card {
    animation: none;
  }
}

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

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }
  .hero {
    padding-top: 60px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
