/* NoDepositRadar — global stylesheet */
:root {
  --bg: #0b1226;
  --panel: #131a33;
  --panel-2: #0f1730;
  --line: #232c52;
  --text: #dde4f5;
  --muted: #93a0c4;
  --cyan: #19c7e6;
  --cyan-soft: rgba(25, 199, 230, 0.12);
  --green: #22c55e;
  --green-soft: rgba(34, 197, 94, 0.14);
  --red: #f87171;
  --amber: #fbbf24;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.45);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  background-image:
    radial-gradient(900px 480px at 85% -10%, rgba(25, 199, 230, 0.08), transparent 60%),
    radial-gradient(700px 420px at -10% 30%, rgba(34, 197, 94, 0.05), transparent 60%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  line-height: 1.22;
  color: #fff;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.8rem, 4.2vw, 2.6rem); margin: 0.2em 0 0.45em; }
h2 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin: 1.9em 0 0.55em; }
h3 { font-size: 1.13rem; margin: 1.4em 0 0.4em; }

p { margin: 0.75em 0; }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  background: var(--cyan-soft);
  color: var(--cyan);
  border: 1px solid rgba(25, 199, 230, 0.3);
  border-radius: 6px;
  padding: 0.08em 0.45em;
  font-size: 0.92em;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--cyan); color: #04121f; padding: 8px 14px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(11, 18, 38, 0.92);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding-top: 12px; padding-bottom: 12px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 1.18rem; color: #fff; text-decoration: none;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand .brand-dot {
  position: relative; width: 12px; height: 12px; border-radius: 50%;
  background: var(--green); flex: none;
}
.brand .brand-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--green); opacity: 0.6;
  animation: ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.brand em { color: var(--cyan); font-style: normal; }

.site-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto; }
.site-nav a {
  color: var(--muted); font-size: 0.92rem; font-weight: 500;
  padding: 6px 10px; border-radius: 8px;
}
.site-nav a:hover { color: #fff; background: var(--panel); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--cyan); background: var(--cyan-soft); }

/* ---------- Radar animation ---------- */
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 80%, 100% { transform: scale(3); opacity: 0; } }
@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes blip { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

.radar {
  position: relative; width: min(250px, 56vw); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(25, 199, 230, 0.35);
  background:
    linear-gradient(rgba(25, 199, 230, 0.18), rgba(25, 199, 230, 0.18)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(rgba(25, 199, 230, 0.18), rgba(25, 199, 230, 0.18)) 0 50% / 100% 1px no-repeat,
    repeating-radial-gradient(circle at 50% 50%, rgba(25, 199, 230, 0.16) 0 1px, transparent 1px 20%),
    radial-gradient(circle at 50% 50%, rgba(25, 199, 230, 0.10), rgba(11, 18, 38, 0) 70%);
  overflow: hidden;
  flex: none;
}
.radar .sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(25, 199, 230, 0.45), rgba(25, 199, 230, 0.06) 75deg, transparent 80deg);
  animation: sweep 4.5s linear infinite;
}
.radar .blip {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
  animation: blip 2.6s ease-in-out infinite;
}
.radar .b1 { top: 26%; left: 62%; }
.radar .b2 { top: 58%; left: 30%; animation-delay: 0.9s; }
.radar .b3 { top: 70%; left: 68%; animation-delay: 1.7s; }
.radar .core {
  position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px;
  border-radius: 50%; background: var(--cyan);
}
.radar .core::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--cyan); animation: ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ---------- Hero ---------- */
.hero { padding: 46px 0 18px; }
.hero-grid { display: flex; gap: 36px; align-items: center; justify-content: space-between; }
.hero-copy { max-width: 660px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 8px;
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.stat-chip {
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.84rem; color: var(--muted); padding: 6px 14px;
}
.stat-chip strong { color: #fff; font-weight: 600; }

/* ---------- Direct-answer lead ---------- */
.lead-answer {
  background: linear-gradient(180deg, var(--cyan-soft), rgba(25, 199, 230, 0.04));
  border: 1px solid rgba(25, 199, 230, 0.3);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 1.04rem;
  margin: 18px 0 8px;
}

/* ---------- Badges ---------- */
.badge-active {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-soft); color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  border-radius: 999px; padding: 3px 10px; vertical-align: middle;
  text-transform: uppercase; white-space: nowrap;
}
.badge-active .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: relative; flex: none;
}
.badge-active .pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.badge-soft {
  display: inline-block; background: var(--panel-2); border: 1px solid var(--line);
  color: var(--muted); font-size: 0.72rem; font-weight: 600; border-radius: 999px;
  padding: 3px 10px; letter-spacing: 0.04em; white-space: nowrap;
}

/* ---------- Updated stamp & true-value links ---------- */
.updated-stamp {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green-soft); border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px; padding: 6px 14px;
  font-size: 0.85rem; color: var(--text); margin: 6px 0 14px;
}
.updated-stamp strong { color: #fff; }
.updated-stamp .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  position: relative; flex: none;
}
.updated-stamp .pulse-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green);
  animation: ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.tv-link { font-size: 0.82rem; color: var(--cyan); white-space: nowrap; }
td .tv-link { display: inline-block; margin-top: 6px; }
.card-cta .tv-link { font-size: 0.8rem; }

/* ---------- Casino cards ---------- */
.toplist { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.card {
  display: grid;
  grid-template-columns: 46px 48px 1fr 168px;
  gap: 16px; align-items: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
  position: relative;
}
.card:hover { border-color: rgba(25, 199, 230, 0.45); }
.card .rank {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--panel-2); border: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--muted);
}
.card:first-child .rank { background: var(--cyan); color: #04121f; border-color: var(--cyan); }
.card img.logo, .logo-fall { border-radius: 10px; }
.logo-fall {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan), #0d8aa6);
  color: #04121f; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.85rem;
}
.card h3 { margin: 0 0 2px; font-size: 1.16rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.card h3 a { color: #fff; }
.card .offer { color: var(--cyan); font-weight: 600; margin: 2px 0 6px; font-size: 1.0rem; }
.card .facts { display: flex; flex-wrap: wrap; gap: 6px 14px; padding: 0; margin: 6px 0; list-style: none; font-size: 0.86rem; color: var(--muted); }
.card .facts li strong { color: var(--text); font-weight: 600; }
.card .blurb { font-size: 0.95rem; color: var(--text); margin: 8px 0 0; }
.card .verified { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.card-cta { display: flex; flex-direction: column; align-items: stretch; gap: 8px; text-align: center; }
.score {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff;
}
.score span { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.btn {
  display: inline-block; background: var(--cyan); color: #04121f !important;
  font-weight: 700; font-family: "Space Grotesk", sans-serif;
  border-radius: 10px; padding: 11px 18px; text-align: center;
  border: none; cursor: pointer; font-size: 0.98rem;
}
.btn:hover { background: #3fd5ef; text-decoration: none; }
.btn-ghost {
  display: inline-block; border: 1px solid var(--line); color: var(--text) !important;
  border-radius: 10px; padding: 10px 16px; font-weight: 600; font-size: 0.92rem; background: var(--panel-2);
}
.btn-ghost:hover { border-color: var(--cyan); text-decoration: none; }
.tc-note { font-size: 0.74rem; color: var(--muted); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 520px; background: var(--panel); font-size: 0.92rem; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th {
  font-family: "Space Grotesk", sans-serif; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); background: var(--panel-2);
}
tr:last-child td { border-bottom: none; }
td .btn { padding: 7px 12px; font-size: 0.85rem; }

/* ---------- Panels / sections ---------- */
.panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; margin: 18px 0;
}
.panel-cyan { border-color: rgba(25, 199, 230, 0.35); background: linear-gradient(180deg, rgba(25, 199, 230, 0.07), var(--panel)); }
.panel-green { border-color: rgba(34, 197, 94, 0.35); background: linear-gradient(180deg, rgba(34, 197, 94, 0.06), var(--panel)); }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 14px 0; }
.steps li { counter-increment: step; position: relative; padding: 0 0 14px 46px; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cyan-soft); border: 1px solid rgba(25, 199, 230, 0.4); color: var(--cyan);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 0.9rem;
}
ul.checks { list-style: none; padding-left: 0; }
ul.checks li { padding-left: 26px; position: relative; margin: 6px 0; }
ul.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
ul.crosses { list-style: none; padding-left: 0; }
ul.crosses li { padding-left: 26px; position: relative; margin: 6px 0; }
ul.crosses li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); padding: 14px 0 4px; }
.faq-item h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--cyan); }
.faq-item p { margin: 0 0 12px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--muted); margin: 18px 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: var(--line); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--cyan); }

/* ---------- Calculator ---------- */
.calc {
  background: var(--panel); border: 1px solid rgba(25, 199, 230, 0.35);
  border-radius: var(--radius); padding: 24px; margin: 26px 0; box-shadow: var(--shadow);
}
.calc fieldset { border: none; padding: 0; margin: 0 0 14px; }
.calc legend, .calc label { font-weight: 600; font-size: 0.9rem; color: var(--text); display: block; margin-bottom: 6px; }
.calc .hint { font-weight: 400; color: var(--muted); font-size: 0.8rem; margin-top: 4px; }
.calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin: 12px 0; }
.calc input[type="number"] {
  width: 100%; background: var(--panel-2); border: 1px solid var(--line); color: #fff;
  border-radius: 10px; padding: 10px 12px; font-size: 1rem; font-family: inherit;
}
.calc input[type="number"]:focus { outline: 2px solid var(--cyan); border-color: var(--cyan); }
.mode-switch { display: flex; gap: 8px; flex-wrap: wrap; }
.mode-switch label {
  display: inline-flex; align-items: center; gap: 8px; margin: 0;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 14px; cursor: pointer; font-weight: 600; font-size: 0.92rem;
}
.mode-switch label:has(input:checked) { border-color: var(--cyan); background: var(--cyan-soft); color: var(--cyan); }
.preset-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 2px; }
.preset-row button {
  background: var(--panel-2); border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 6px 12px; font-size: 0.8rem; cursor: pointer; font-family: inherit;
}
.preset-row button:hover { border-color: var(--cyan); color: var(--cyan); }
#calc-result { margin-top: 18px; }
.calc-headline {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.18rem;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 12px;
}
.calc-headline.pos { border-color: rgba(34, 197, 94, 0.5); color: var(--green); }
.calc-headline.neg { border-color: rgba(248, 113, 113, 0.5); color: var(--red); }
.calc-rows { list-style: none; padding: 0; margin: 0 0 12px; font-size: 0.94rem; }
.calc-rows li { display: flex; justify-content: space-between; gap: 16px; padding: 7px 4px; border-bottom: 1px dashed var(--line); }
.calc-rows li strong { font-variant-numeric: tabular-nums; }
.calc-verdict { font-size: 0.95rem; color: var(--text); background: var(--panel-2); border-radius: 10px; padding: 12px 14px; }
.calc-error { color: var(--amber); font-weight: 600; }
.val-pos { color: var(--green); }
.val-neg { color: var(--red); }

/* ---------- Cross-promo strip ---------- */
.crosslinks {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; margin: 34px 0 10px;
}
.crosslinks p { margin: 0; font-size: 0.94rem; color: var(--muted); }
.crosslinks .links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 56px; background: var(--panel-2); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px;
  padding: 36px 0 24px;
}
.footer-grid h4 {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 7px 0; }
.footer-grid a { color: var(--text); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--cyan); }
.footer-about p { font-size: 0.86rem; color: var(--muted); margin: 10px 0; }
.chip-18 {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--red); color: var(--red); font-weight: 800; font-size: 0.82rem;
  font-family: "Space Grotesk", sans-serif;
}
.footer-bottom {
  border-top: 1px solid var(--line); padding: 18px 0 26px;
  font-size: 0.8rem; color: var(--muted);
}
.footer-bottom p { margin: 6px 0; }

/* ---------- 404 ---------- */
.lost { text-align: center; padding: 60px 0 30px; }
.lost .radar { margin: 0 auto 28px; }
.lost h1 { font-size: clamp(2rem, 5vw, 3rem); }

/* ---------- Utility ---------- */
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.green { color: var(--green); }
.red { color: var(--red); }
.cyan { color: var(--cyan); }
.center { text-align: center; }
main { min-height: 55vh; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { flex-direction: column-reverse; align-items: flex-start; }
  .hero-grid .radar { align-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
}
@media (max-width: 600px) {
  .site-header .container { flex-wrap: wrap; gap: 8px; }
  h1 { font-size: 1.5rem; }
  .lead-answer { font-size: 0.95rem; }
  code { white-space: normal; overflow-wrap: anywhere; word-break: break-all; }
}
@media (max-width: 720px) {
  .card { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; }
  .card .rank { width: 30px; height: 30px; font-size: 0.9rem; }
  .card img.logo, .card .logo-fall { display: none; }
  .card-cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .card-cta .btn { flex: 1; }
  .site-nav { margin-left: 0; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .radar .sweep, .radar .blip, .brand .brand-dot::after, .badge-active .pulse::after,
  .radar .core::after, .updated-stamp .pulse-dot::after { animation: none; }
  html { scroll-behavior: auto; }
}
