/* Cookie banner (shared) */
.cb-wrap{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  z-index:9999;
  display:none;
}
.cb{
  max-width:1200px;
  margin:0 auto;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 14px 30px rgba(0,0,0,.45);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  overflow:hidden;
}
.cb-inner{
  padding:14px 14px 12px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:12px 14px;
  align-items:center;
}
.cb-title{
  font-weight:900;
  letter-spacing:.02em;
  margin:0 0 6px;
}
.cb-text{
  margin:0;
  opacity:.92;
  line-height:1.45;
  font-size:14px;
}
.cb-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cb-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.cb-btn:hover{
  transform:translateY(-1px);
  background:rgba(0,0,0,.50);
  box-shadow:0 12px 22px rgba(0,0,0,.35);
  border-color:rgba(255,255,255,.28);
}
.cb-btn-primary{
  border:none;
  color:#0c1012;
  background:linear-gradient(90deg, #11c3d7, #0aa7be);
  box-shadow:0 10px 22px rgba(0,0,0,.40);
}
.cb-btn-primary:hover{
  filter:brightness(1.05);
  box-shadow:0 14px 26px rgba(0,0,0,.55);
}

/* Simple modal */
.cb-modal{
  position:fixed; inset:0;
  z-index:10000;
  display:none;
  background:rgba(0,0,0,.55);
  padding:18px;
}
.cb-modal .panel{
  max-width:720px;
  margin:10vh auto 0;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 18px 40px rgba(0,0,0,.55);
  overflow:hidden;
}
.cb-modal .panel-inner{ padding:16px; }
.cb-modal h3{ margin:0 0 10px; }
.cb-row{
  display:flex; align-items:flex-start; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  margin:10px 0;
}
.cb-row label{ font-weight:800; }
.cb-row small{ display:block; opacity:.82; line-height:1.4; margin-top:3px; }
.cb-modal .actions{
  display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap;
  margin-top:12px;
}

@media (max-width:768px){
  .cb-inner{ grid-template-columns:1fr; }
  .cb-actions{ justify-content:flex-start; }
}