/* Swift Neon Cookies – Frontend Styles */
.snc-root { position: relative; z-index: 999999; }
.snc-hidden { display: none !important; }

/* Banner */
.snc-banner {
  position: fixed;
  max-width: 560px;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.6), 0 0 20px rgba(0,255,170,.15);
  backdrop-filter: saturate(1.2) blur(2px);
  border: 1px solid rgba(255,255,255,.06);
}
.snc-pos-bottom-left { left: 20px; bottom: 20px; }
.snc-pos-bottom-right { right: 20px; bottom: 20px; }
.snc-pos-bottom-center { left: 50%; transform: translateX(-50%); bottom: 20px; }

.snc-banner h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.2; }
.snc-banner p { margin: 0 0 12px; font-size: 14px; opacity: .95; }

.snc-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.snc-btn {
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  background: #111a22;
}
.snc-btn-primary {
  color: #031a12;
  border: none;
  box-shadow: 0 0 12px rgba(19,255,158,.55);
}

/* Link */
.snc-policy { text-decoration: none; border-bottom: 1px dotted currentColor; }

/* Modal */
.snc-modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 999999; }
.snc-modal {
  position: fixed;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(720px, calc(100vw - 40px));
  background: #0b0f14;
  color: #cfe7e3;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 30px rgba(0,255,170,.15);
  border: 1px solid rgba(255,255,255,.06);
}
.snc-modal h3 { margin-top: 0; }
.snc-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.snc-row:last-child { border-bottom: none; }
.snc-switch { position: relative; width: 48px; height: 28px; background: #1f2e3a; border-radius: 999px; cursor: pointer; transition: all .2s; }
.snc-switch-knob { position: absolute; width: 22px; height: 22px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.35); }
.snc-switch.on { box-shadow: 0 0 12px rgba(19,255,158,.6); }
.snc-switch.on .snc-switch-knob { left: 23px; }
.snc-modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }

/* Small helper link */
a.snc-manage-consent { cursor: pointer; }
