/* bonocasinoonline.store - Dark Mode Neon (No frameworks) */
:root {
  --bg0: #050814;
  --bg1: #0b1226;
  --card: rgba(255, 255, 255, .06);
  --card2: rgba(255, 255, 255, .08);
  --stroke: rgba(255, 255, 255, .10);
  --text: #e7edf7;
  --muted: #b7c3d9;
  --green: #22c55e;
  --blue: #0ea5e9;
  --yellow: #fbbf24;
  --danger: #fb7185;
  --shadow: 0 14px 40px rgba(0, 0, 0, .45);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(14, 165, 233, .18), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(34, 197, 94, .14), transparent 55%),
    radial-gradient(900px 600px at 50% 100%, rgba(34, 197, 94, .10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height: 100vh;
  line-height: 1.6;
}

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

a {
  color: inherit
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto
}

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

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #000;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  z-index: 9999
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5, 8, 20, .65);
  border-bottom: 1px solid var(--stroke);
}

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

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

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12)
}

.brand span {
  font-weight: 800;
  letter-spacing: .2px
}

.badge {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 197, 94, .20), rgba(14, 165, 233, .20));
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.nav a:hover,
.nav a.active,
.mobile-panel a.active {
  color: var(--text);
  text-shadow: 1px 2px 4px rgba(34, 197, 94, 0.8), 0 0 10px rgba(14, 165, 233, 0.7);
}

.nav .cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.nav .cta:hover {
  background: linear-gradient(90deg, rgba(34, 197, 94, .22), rgba(14, 165, 233, .22));
  border-color: rgba(255, 255, 255, .18);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: var(--text);
}

.menu-btn svg {
  width: 22px;
  height: 22px
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--stroke);
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

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

.mobile-panel .cta {
  margin: 10px 0 14px
}

.hero {
  padding: 44px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 22px
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.kicker .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green), var(--blue))
}

h1 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -.3px;
}

p {
  margin: 0 0 14px;
  color: var(--muted)
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  font-weight: 800;
}

.btn.primary {
  background: linear-gradient(90deg, rgba(34, 197, 94, .9), rgba(14, 165, 233, .85));
  border-color: rgba(255, 255, 255, .18);
  color: #071018;
}

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

.btn.ghost:hover {
  background: rgba(255, 255, 255, .09)
}

.hero-illustration {
  padding: 18px
}

.hero-illustration .ill {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(600px 280px at 20% 15%, rgba(14, 165, 233, .20), transparent 55%),
    radial-gradient(600px 280px at 80% 10%, rgba(34, 197, 94, .18), transparent 55%),
    rgba(255, 255, 255, .04);
  padding: 16px;
}

.hero-illustration .ill img {
  display: block;
  width: 100%
}

.section {
  padding: 24px 0
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -.2px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.panel {
  padding: 18px
}

.mini {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(34, 197, 94, .18), rgba(14, 165, 233, .12));
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon svg {
  width: 22px;
  height: 22px
}

.mini h3 {
  margin: 0 0 4px;
  font-size: 16px
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04)
}

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

th,
td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  vertical-align: top
}

th {
  color: var(--text);
  font-size: 13px;
  text-align: left;
  background: rgba(255, 255, 255, .04)
}

td {
  color: var(--muted);
  font-size: 14px
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  font-weight: 750;
  color: var(--text);
  font-size: 12px;
}

.tag .pill {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green)
}

.tag.blue .pill {
  background: var(--blue)
}

.tag.yellow .pill {
  background: var(--yellow)
}

.tag.danger .pill {
  background: var(--danger)
}

.small {
  font-size: 12px;
  color: var(--muted)
}

.note {
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
}

.note strong {
  color: var(--text)
}

.inline-links a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px
}

.inline-links a:hover {
  opacity: .9
}

.steps {
  counter-reset: step
}

.step {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.step h3 {
  margin: 0 0 6px
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, rgba(34, 197, 94, .25), rgba(14, 165, 233, .18));
  border: 1px solid rgba(255, 255, 255, .14);
  font-weight: 900;
}

/* FAQ arrow icon */
.faq-icon {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

/* Rotate arrow when open */
.faq-item[open] .faq-icon::before {
  transform: rotate(-135deg);
  border-color: var(--green);
}

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

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.faq-q span {
  color: var(--muted);
  font-weight: 650;
  font-size: 13px
}

.faq-a {
  display: none;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 14px
}

.faq-item[open] .faq-a {
  display: block
}

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

label {
  font-weight: 750
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .22);
  color: var(--text);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(183, 195, 217, .75)
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(14, 165, 233, .55);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .15);
}

textarea {
  min-height: 120px;
  resize: vertical
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.footer {
  border-top: 1px solid var(--stroke);
  margin-top: 26px;
  padding: 22px 0 28px;
  background: rgba(5, 8, 20, .35);
}

.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
  justify-items: center;
}

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

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

.footer .links {
  display: grid;
  gap: 8px
}

.footer .legal {
  color: var(--muted);
  font-size: 12px
}

.footer .legal strong {
  color: var(--text)
}

.cookiebar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(6, 10, 22, .86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display: none;
}

.cookiebar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cookiebar p {
  margin: 0;
  font-size: 13px
}

.cookiebar .btn {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text)
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 90;
  background: rgba(0, 0, 0, .55);
}

.modal .dialog {
  width: min(640px, 96vw);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 12, 24, .92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dialog header {
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dialog header h3 {
  margin: 0;
  font-size: 18px
}

.dialog header p {
  margin: 6px 0 0;
  font-size: 13px
}

.dialog .content {
  padding: 14px 16px
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  margin-bottom: 10px;
}

.toggle h4 {
  margin: 0;
  font-size: 14px
}

.toggle p {
  margin: 4px 0 0;
  font-size: 12px
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.switch input {
  width: 46px;
  height: 26px;
  padding: 0;
  appearance: none;
  border-radius: 999px;
  position: relative;
  cursor: pointer
}

.switch input::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  transition: transform .18s ease;
}

.switch input:checked {
  background: rgba(34, 197, 94, .55);
  border-color: rgba(34, 197, 94, .6)
}

.switch input:not(:checked) {
  background: rgba(255, 255, 255, .12)
}

.switch input:checked::before {
  transform: translateX(20px)
}

.dialog footer {
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

hr.sep {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin: 14px 0
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  table {
    min-width: 720px
  }
}

@media (max-width: 820px) {
  .nav {
    display: none
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center
  }

  .mobile-panel.show {
    display: block
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}