/* Design: NEON CYBER — dark base, cyan/magenta glow, sharp UI */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;800&family=Exo+2:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --neon-cyan: #00f5ff;
  --neon-magenta: #ff00aa;
  --neon-green: #00ff88;
  --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 40px rgba(0, 245, 255, 0.2);
  --glow-magenta: 0 0 20px rgba(255, 0, 170, 0.4), 0 0 40px rgba(255, 0, 170, 0.15);
  --border-glow: 1px solid rgba(0, 245, 255, 0.4);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 245, 255, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 0, 170, 0.06), transparent),
    url("bg-hotsp22in.png"),
    url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='8' fill='none' stroke='rgba(0,245,255,0.06)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='4' fill='rgba(255,0,170,0.04)'/%3E%3C/svg%3E");
  background-size: auto, auto, cover, 120px 120px;
  background-position: center, center, center, 0 0;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
h1, h2, h3 { font-family: 'Orbitron', sans-serif; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin: 0 0 0.75rem; }
a { color: var(--neon-cyan); text-decoration: none; transition: color 0.2s, text-shadow 0.2s; }
a:hover { color: var(--neon-magenta); text-shadow: var(--glow-magenta); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* Header — neon strip, glowing nav */
.site-header {
  background: rgba(18, 18, 26, 0.95);
  border-bottom: 2px solid rgba(0, 245, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 245, 255, 0.1);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}
.site-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 245, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.site-logo:hover {
  background: rgba(0, 245, 255, 0.06);
  border-color: rgba(0, 245, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}
.site-logo-icon { display: inline-flex; flex-shrink: 0; }
.site-logo-icon-right { margin-left: 0.35rem; }
.site-logo-icon-above { display: block; margin: 0 auto 0.3rem; }
.site-logo-stacked { flex-direction: column; align-items: center; }
.site-logo-stacked .site-logo-icon-above { margin-bottom: 0.25rem; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-header nav a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  color: var(--text);
}
.site-header nav a:hover {
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}
.site-header .regulator-badges { font-size: 0.7rem; color: var(--text-muted); }
.site-header [style*="font-size:0.75rem"] a { color: var(--text-muted); font-size: 0.75rem; }
.site-header [style*="font-size:0.75rem"] a:hover { color: var(--neon-cyan); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroGlow {
  0%, 100% { box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255,255,255,0.03); }
  50% { box-shadow: 0 0 35px rgba(0, 245, 255, 0.15), 0 0 60px rgba(255, 0, 170, 0.08), inset 0 1px 0 rgba(255,255,255,0.04); }
}

/* Hero — split layout: left text + rank box, right badge */
.hero {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.06) 0%, rgba(255, 0, 170, 0.04) 100%);
  border: var(--border-glow);
  border-radius: 12px;
  margin: 2rem 0;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255,255,255,0.03);
  animation: heroGlow 4s ease-in-out infinite;
}
.hero-split .hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .hero-split .hero-inner { grid-template-columns: 1fr; } }
.hero-left { min-width: 0; }
.hero h1 {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.hero-lead { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 1.25rem; line-height: 1.55; }
.hero-rank-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.hero-rank-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--neon-cyan); display: block; margin-bottom: 0.5rem; }
.hero-rank-box ul { margin: 0; padding: 0 0 0 1.25rem; color: var(--text-muted); font-size: 0.85rem; }
.hero-rank-box li { margin: 0.25rem 0; }
.hero-right { text-align: center; }
.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.hero .disclaimer {
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 0, 170, 0.2);
  color: var(--text-muted);
  margin: 0;
}
.hero-inner { padding: 0.5rem 0; }

/* Rating method block */
.rating-method-block {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: rgba(0, 245, 255, 0.04);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 12px;
}
.rating-method-block h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.rating-method-block p { margin: 0; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Page hero for inner pages */
.page-hero {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  margin-bottom: 2rem;
}
.page-hero h1 { color: var(--text); margin: 0 0 0.5rem; }
.page-hero .disclaimer { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Casino cards — glass + neon border + hover glow */
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.casino-card {
  background: var(--bg-card);
  border: var(--border-glow);
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.2s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease-out backwards;
}
.casino-card:nth-child(1) { animation-delay: 0.05s; }
.casino-card:nth-child(2) { animation-delay: 0.1s; }
.casino-card:nth-child(3) { animation-delay: 0.15s; }
.casino-card:nth-child(4) { animation-delay: 0.2s; }
.casino-card:nth-child(5) { animation-delay: 0.25s; }
.casino-card:nth-child(6) { animation-delay: 0.3s; }
.casino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,245,255,0.3), transparent, rgba(255,0,170,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.casino-card:hover {
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.25), 0 0 50px rgba(255, 0, 170, 0.1);
  border-color: rgba(0, 245, 255, 0.6);
  transform: translateY(-2px);
}
.casino-card .logo-wrap {
  width: 140px;
  height: 88px;
  margin: 0 auto 1rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 2px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}
.casino-card .logo-wrap img { object-fit: contain; max-width: 100%; max-height: 100%; border-radius: 10px; }
.casino-card .card-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem; border-radius: 4px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: var(--bg); z-index: 1;
}
.casino-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; margin: 0 0 0.5rem; color: var(--text); }
.casino-card .meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.casino-card .casino-features {
  list-style: none; margin: 0 0 0.75rem; padding: 0; font-size: 0.8rem; color: var(--text-muted);
}
.casino-card .casino-features li {
  padding: 0.2rem 0 0.2rem 1rem; position: relative;
}
.casino-card .casino-features li::before {
  content: '▸'; position: absolute; left: 0; color: var(--neon-cyan); font-size: 0.75rem;
}
.casino-card .card-desc {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 0.75rem;
}
.casino-card .tcs { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.5rem; opacity: 0.9; }
.casino-card .rating { font-size: 0.85rem; margin: 0.35rem 0 0.5rem; }
.casino-card .rating span { color: var(--neon-green); }
.casino-card .rating .label { color: var(--text-muted); font-size: 0.75rem; margin-left: 6px; }
.casino-card .cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
.casino-card .cta:hover {
  background: rgba(0, 245, 255, 0.15);
  box-shadow: var(--glow-cyan);
}

/* Content blocks — subtle glow border */
.content-block {
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.content-block h2 { color: var(--neon-cyan); text-shadow: 0 0 15px rgba(0, 245, 255, 0.2); }
.content-block p { margin: 0; color: var(--text); }

/* Content block variants — different shapes/layouts */
.content-block-strip {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 0;
  border-left: none;
  border-right: none;
  background: linear-gradient(90deg, rgba(0, 245, 255, 0.08) 0%, transparent 100%);
}
.content-block-left-accent {
  border-left: 4px solid var(--neon-magenta);
  padding-left: 1.5rem;
}
.content-blocks-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.content-block-compact {
  margin: 0;
  padding: 1.25rem;
  border-radius: 8px;
}
.content-block-callout {
  margin: 2rem auto;
  max-width: 85%;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 2px dashed rgba(0, 245, 255, 0.35);
  background: rgba(0, 245, 255, 0.04);
}
.content-block-wide {
  max-width: 100%;
  padding: 2rem 2.5rem;
}

/* Footer — sections with titles and dividers */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid rgba(255, 0, 170, 0.25);
  background: rgba(18, 18, 26, 0.8);
  box-shadow: 0 -4px 30px rgba(255, 0, 170, 0.06);
}
.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.footer-section-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-magenta);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 0, 170, 0.3);
}
.footer-section-nav .footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-section-nav .footer-nav a { color: var(--text-muted); }
.footer-section-nav .footer-nav a:hover { color: var(--neon-cyan); }
.footer-section-regulators .footer-regulators-row { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.footer-section-regulators .footer-regulators-row a { color: var(--text-muted); }
.footer-section-regulators .footer-regulators-row a:hover { color: var(--neon-cyan); }
.footer-section-logos .footer-logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-section-logos .footer-logos-row img { opacity: 0.9; border-radius: 4px; }
.footer-section-disclaimer { grid-column: 1 / -1; text-align: center; padding-top: 1rem; border-top: 1px solid rgba(0, 245, 255, 0.15); }
.footer-section-disclaimer p { margin: 0; font-size: 0.75rem; color: var(--text-muted); }
.footer-nav-first { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
.footer-nav-first .footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.footer-nav-first .footer-nav a { color: var(--text-muted); }
.footer-nav-first .footer-nav a:hover { color: var(--neon-cyan); }
.footer-nav-first .footer-regulators-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; font-size: 0.9rem; }
.footer-nav-first .footer-regulators-row a { color: var(--text-muted); }
.footer-nav-first .footer-regulators-row a:hover { color: var(--neon-cyan); }
.footer-nav-first .footer-logos-row { display: flex; gap: 10px; align-items: center; }
.footer-nav-first .footer-logos-row img { opacity: 0.9; }
.footer-nav-first .footer-disclaimer { max-width: 640px; }
.footer-nav-first .footer-disclaimer p { margin: 0; font-size: 0.75rem; color: var(--text-muted); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-inner .regulators p { margin: 0.25rem 0; color: var(--text-muted); font-size: 0.85rem; }
.footer-inner .regulators strong { color: var(--text); }
.footer-inner > div[style*="display:flex"] img {
  border-radius: 4px;
  opacity: 0.9;
}
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-inner nav a { color: var(--text-muted); }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-muted); width: 100%; margin-top: 1rem; }
.footer-disclaimer p { margin: 0; }
.footer-extra { width: 100%; margin-top: 0.75rem; }
.footer-note { font-size: 0.75rem; color: var(--text-muted); margin: 0; opacity: 0.9; }

/* Cookie banner — neon strip */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 26, 0.98);
  border-top: 2px solid var(--neon-cyan);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1000;
  box-shadow: 0 -8px 30px rgba(0, 245, 255, 0.15);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; font-size: 0.9rem; color: var(--text); }
.cookie-banner a { color: var(--neon-cyan); }
.cookie-banner button {
  padding: 0.5rem 1.25rem;
  background: var(--neon-cyan);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.cookie-banner button:hover { box-shadow: var(--glow-cyan); }

/* Age gate — centered glow box */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(8px);
}
.age-gate-overlay.hidden { display: none; }
.age-gate-box {
  background: var(--bg-card);
  border: 2px solid var(--neon-magenta);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 400px;
  text-align: center;
  box-shadow: var(--glow-magenta), 0 25px 50px rgba(0,0,0,0.5);
}
.age-gate-box h2 {
  color: var(--neon-magenta);
  text-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
  margin-top: 0;
}
.age-gate-box p { font-size: 0.95rem; color: var(--text-muted); }
.age-gate-box .buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.age-gate-box button {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  font-size: 0.9rem;
  transition: box-shadow 0.3s, transform 0.2s;
}
.age-gate-box .btn-confirm {
  background: var(--neon-magenta);
  color: #fff;
  border: none;
}
.age-gate-box .btn-confirm:hover { box-shadow: var(--glow-magenta); transform: scale(1.02); }
.age-gate-box .btn-leave {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--text-muted);
}
.age-gate-box .btn-leave:hover { color: var(--text); border-color: var(--text); }

/* Utility */
main .container > h2 { color: var(--text); margin-top: 2rem; }
