/* casino321radar.com - radar/tech showcase */
:root {
  --bg: #0b0f1a;
  --bg-2: #0f1626;
  --card: #121a2c;
  --line: rgba(0, 210, 255, 0.18);
  --accent: #19e3ff;
  --accent-2: #7dffb3;
  --uk-blue: #00247d;
  --uk-red: #cf142b;
  --text: #e8f0ff;
  --muted: #a9b6d3;
  --warn: #ffb45c;
  --ok: #7dffb3;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --max: 1180px;
  --grid: linear-gradient(transparent 23px, rgba(25, 227, 255, 0.06) 24px),
    linear-gradient(90deg, transparent 23px, rgba(25, 227, 255, 0.06) 24px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(1200px 600px at 20% 5%, rgba(25, 227, 255, 0.16), transparent 60%),
    radial-gradient(900px 500px at 80% 15%, rgba(125, 255, 179, 0.12), transparent 55%),
    linear-gradient(180deg, #0a0d16 0%, #0c1220 40%, #0a0f1c 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grid);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Crect width='1400' height='900' fill='none'/%3E%3Ccircle cx='220' cy='220' r='140' fill='none' stroke='%2300247d' stroke-opacity='0.22' stroke-width='6'/%3E%3Ccircle cx='1120' cy='240' r='170' fill='none' stroke='%23cf142b' stroke-opacity='0.2' stroke-width='6'/%3E%3Crect x='980' y='560' width='180' height='120' rx='18' fill='none' stroke='%2319e3ff' stroke-opacity='0.25' stroke-width='4'/%3E%3Cpath d='M80 700 C320 520 520 740 760 620' stroke='%237dffb3' stroke-opacity='0.22' stroke-width='5' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #bdf7ff;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 15, 26, 0.8);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 36px;
  height: 36px;
  animation: spin 18s linear infinite;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 36, 125, 0.24), rgba(207, 20, 43, 0.2));
  color: var(--warn);
  font-size: 12px;
  border: 1px solid rgba(255, 180, 92, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: pulse 3.6s ease-in-out infinite;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  color: var(--text);
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  padding: 70px 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(140deg, rgba(18, 26, 44, 0.9), rgba(13, 20, 34, 0.6));
  border: 1px solid rgba(25, 227, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  animation: float 8s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 12px;
}

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

.hero-metrics {
  display: grid;
  gap: 12px;
}

.metric {
  padding: 14px;
  border-radius: 12px;
  background: rgba(25, 227, 255, 0.08);
  border: 1px solid rgba(25, 227, 255, 0.2);
  font-size: 14px;
}

.section {
  padding: 40px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.section-title span {
  font-size: 13px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.info-card {
  background: rgba(18, 26, 44, 0.75);
  border: 1px solid rgba(125, 255, 179, 0.2);
  border-radius: var(--radius);
  padding: 22px;
}

.info-card h3 {
  margin-top: 0;
}

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

.casino-card {
  background: var(--card);
  border: 1px solid rgba(25, 227, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.confidence-rating {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(25, 227, 255, 0.2);
  background: rgba(25, 227, 255, 0.08);
}

.confidence-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

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

.confidence-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #19e3ff, #7dffb3);
}

.casino-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(25, 227, 255, 0.6), rgba(25, 227, 255, 0.1));
  border: 1px solid rgba(25, 227, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #0b0f1a;
  font-weight: 700;
}

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

.casino-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(25, 227, 255, 0.4);
  background: rgba(25, 227, 255, 0.16);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.cta:hover {
  background: rgba(25, 227, 255, 0.3);
}

.comparison {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  color: var(--accent-2);
  font-weight: 600;
  background: rgba(13, 20, 34, 0.7);
}

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

.faq details {
  background: rgba(18, 26, 44, 0.7);
  border: 1px solid rgba(25, 227, 255, 0.14);
  padding: 14px 16px;
  border-radius: 12px;
}

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

.reg-card {
  padding: 18px;
  border-radius: 14px;
  background: rgba(18, 26, 44, 0.65);
  border: 1px solid rgba(125, 255, 179, 0.2);
  display: grid;
  gap: 10px;
}

.logo-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo-mini {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(125, 255, 179, 0.18);
  border: 1px solid rgba(125, 255, 179, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent-2);
}

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

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
}

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

.tag {
  color: var(--warn);
  font-weight: 600;
}

.cookie-banner,
.age-gate {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 15, 0.8);
  z-index: 99;
  padding: 16px;
}

.cookie-banner.active,
.age-gate.active {
  display: flex;
}

.banner-card {
  background: #11192b;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow);
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(125, 255, 179, 0.5);
  background: rgba(125, 255, 179, 0.18);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

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

.page-hero h1 {
  margin-bottom: 10px;
}

.content-block {
  background: rgba(18, 26, 44, 0.65);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(25, 227, 255, 0.14);
  margin-bottom: 20px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.no-scroll {
  overflow: hidden;
}

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .age-chip,
  .brand svg {
    animation: none;
  }
}

@media (max-width: 720px) {
  .nav {
    justify-content: flex-start;
    font-size: 13px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
