/* ===== Cookie Banner ===== */
.cb[hidden]{ display:none !important; }

.cb{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: end center;
  padding: 18px;
}

.cb__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}

.cb__card{
  position: relative;
  width: min(560px, 100%);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(25,25,28,.86);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.cb__title{
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}

.cb__text{
  opacity: .88;
  line-height: 1.45;
  margin-bottom: 12px;
}

.cb__buttons{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cb__btn{
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.cb__btn:hover{ background: rgba(255,255,255,.16); }

.cb__btn--primary{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.28);
}

.cb__fineprint{
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  opacity: .9;
}

.cb__fineprint a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cb__link{
  border: none;
  background: none;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ===== Embed Gate Placeholder (optional) ===== */
.embedGate{ position: relative; }
.embedGate iframe{ display:none; }

.embedGate__msg{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 16px;
  color: rgba(245,246,255,.92);
  backdrop-filter: blur(6px);
}

.embedGate__title{ font-weight: 800; margin-bottom: 6px; }
.embedGate__text{ opacity: .85; line-height: 1.4; margin-bottom: 12px; }

.embedGate__btn{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.embedGate__btn:hover{ background: rgba(255,255,255,.16); }
