/* casinoonlineruleta.store — Dark Mode, neon accents, mobile-first */
:root {
  --bg: #0f172a;
  --bg2: #111c33;
  --card: rgba(30, 41, 59, .72);
  --stroke: rgba(148, 163, 184, .22);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted2: #94a3b8;
  --green: #22c55e;
  --blue: #0ea5e9;
  --blue2: #0284c7;
  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
  --radius: 18px;
  --radius2: 22px;
  --max: 1120px;
  --focus: 0 0 0 4px rgba(14, 165, 233, .25), 0 0 0 2px rgba(34, 197, 94, .20);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(14, 165, 233, .20), transparent 55%),
    radial-gradient(1000px 500px at 90% 10%, rgba(34, 197, 94, .18), transparent 55%),
    radial-gradient(800px 400px at 50% 90%, rgba(14, 165, 233, .10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
}

a {
  color: inherit
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(2, 6, 23, .9);
  outline: none;
  box-shadow: var(--focus);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, .75);
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(2, 6, 23, .20);
  border: 1px solid rgba(148, 163, 184, .14);
  display: grid;
  place-items: center;
}

.brand .logo svg {
  width: 26px;
  height: 26px
}

.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.brand .name strong {
  font-size: 14px;
  letter-spacing: .2px
}

.brand .name span {
  font-size: 12px;
  color: var(--muted2)
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .18);
  background: rgba(2, 6, 23, .25);
  color: var(--text);
}

.nav-toggle .kbd {
  font-size: 32px;
  line-height: 1;
  border: none;
  background: transparent;
  padding: 0 0px 3px 0;
  color: var(--text);
  font-family: system-ui;
  margin-top: -4px;
}

.nav-toggle:focus {
  outline: none;
  box-shadow: var(--focus);
}

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: rgba(15, 23, 42, .97);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
  backdrop-filter: blur(10px);
}

.nav.open {
  display: block
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 16px 18px;
  display: grid;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .12);
  background: rgba(2, 6, 23, .25);
}

.nav a:hover,
.nav a.active,
.nav a[aria-current="page"] {
  border-color: rgba(14, 165, 233, .35)
}

.nav a .tag {
  font-size: 12px;
  color: var(--muted2);
}

.nav-desktop {
  display: none
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none
  }

  .nav {
    display: none !important
  }

  .nav-desktop {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-desktop a {
    text-decoration: none;
    font-size: 13px;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid transparent;
  }

  .nav-desktop a:hover,
  .nav-desktop a.active,
  .nav-desktop a[aria-current="page"] {
    border-color: rgba(148, 163, 184, .18);
    color: var(--text);
    background: rgba(2, 6, 23, .20)
  }
}

.hero {
  position: relative;
  padding: 28px 0 10px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(148, 163, 184, .16);
  background: linear-gradient(180deg, rgba(30, 41, 59, .78), rgba(2, 6, 23, .32));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 0% 0%, rgba(34, 197, 94, 0.2), transparent 40%), radial-gradient(600px circle at 100% 100%, rgba(14, 165, 233, 0.2), transparent 40%), radial-gradient(400px circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 60%);
  mix-blend-mode: lighter;
  opacity: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 22px 18px;
  display: grid;
  gap: 14px;
}

@media (min-width: 760px) {
  .hero-inner {
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    padding: 28px
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .16);
  background: rgba(2, 6, 23, .25);
  width: fit-content;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12)
}

h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.2px
}

@media (min-width: 760px) {
  h1 {
    font-size: 36px
  }
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, .16);
  background: rgba(2, 6, 23, .20);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1px;
}

.btn:focus {
  outline: none;
  box-shadow: var(--focus)
}

.btn.primary {
  border-color: rgba(34, 197, 94, .35);
  background: linear-gradient(135deg, rgba(34, 197, 94, .92), rgba(14, 165, 233, .85));
  color: #041014;
}

.btn.primary:hover {
  filter: brightness(1.03)
}

.btn.ghost:hover {
  border-color: rgba(14, 165, 233, .35)
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px
}

.badge {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .14);
  background: rgba(2, 6, 23, .22);
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, .14);
  background: linear-gradient(180deg, rgba(30, 41, 59, .60), rgba(2, 6, 23, .40));
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.section {
  padding: 18px 0
}

.section h2 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.1px;
}

.section h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

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

.small {
  font-size: 13px;
  color: var(--muted2)
}

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

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

@media (min-width: 820px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr
  }
}

.padded {
  padding: 16px
}

@media (min-width: 760px) {
  .padded {
    padding: 18px
  }
}

.table-wrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, .14);
  background: rgba(2, 6, 23, .20);
}

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

th,
td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
  vertical-align: top;
  font-size: 13px;
}

th {
  text-align: left;
  color: var(--muted);
  font-weight: 700;
  background: rgba(2, 6, 23, .25);
  position: sticky;
  top: 0;
}

tr:hover td {
  background: rgba(15, 23, 42, .28)
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .16);
  background: rgba(2, 6, 23, .16);
  font-weight: 700;
}

.pill .mini {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.note {
  border-left: 3px solid rgba(34, 197, 94, .75);
  padding: 10px 12px;
  background: rgba(34, 197, 94, .08);
  border-radius: 14px;
}

.warn {
  border-left: 3px solid rgba(14, 165, 233, .75);
  padding: 10px 12px;
  background: rgba(14, 165, 233, .08);
  border-radius: 14px;
}

hr.sep {
  border: none;
  border-top: 1px solid rgba(148, 163, 184, .14);
  margin: 14px 0;
}

.faq details {
  border: 1px solid rgba(148, 163, 184, .14);
  background: rgba(2, 6, 23, .18);
  border-radius: 16px;
  padding: 10px 12px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq .answer {
  padding-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6
}

.faq .chev {
  width: 20px;
  height: 20px;
  transition: transform .2s ease;
  opacity: .9;
}

.faq details[open] .chev {
  transform: rotate(180deg)
}

.footer {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(148, 163, 184, .12);
  background: rgba(2, 6, 23, .18);
}

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

@media (min-width: 820px) {
  .footer-grid {
    grid-template-columns: 1.2fr .8fr;
    align-items: start
  }
}

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

.footer a:hover {
  color: var(--text)
}

.footer .links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.disclaimer {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

@media (min-width: 720px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px
  }
}

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

.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .65);
  display: none;
  z-index: 10000;
  padding: 18px;
}

.modal.show {
  display: grid;
  place-items: center
}

.modal-card {
  width: min(720px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, .16);
  background: rgba(15, 23, 42, .97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal-body {
  padding: 14px 16px
}

.switch {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, .12);
}

.switch:last-child {
  border-bottom: none
}

.switch .meta {
  max-width: 520px
}

.switch .meta strong {
  display: block
}

.switch .meta span {
  display: block;
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.4
}

.toggle {
  width: 46px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .18);
  background: rgba(2, 6, 23, .30);
  position: relative;
  flex: 0 0 46px;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(148, 163, 184, .75);
  transition: all .2s ease;
}

.toggle.on {
  border-color: rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .16);
}

.toggle.on::after {
  left: 21px;
  background: rgba(34, 197, 94, .95)
}

.toggle.disabled {
  opacity: .55;
  cursor: not-allowed
}

.modal-foot {
  padding: 14px 16px;
  border-top: 1px solid rgba(148, 163, 184, .12);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: var(--muted2);
  border: 1px solid rgba(148, 163, 184, .16);
  border-bottom-color: rgba(148, 163, 184, .30);
  background: rgba(2, 6, 23, .22);
  padding: 2px 6px;
  border-radius: 8px;
}