.cc-banner {
  position: fixed;
  z-index: 9999;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 980px;
  margin: 0 auto;
  background: #0b0b0b;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  padding: 16px;
}

.cc-banner a { color: #fff; text-decoration: underline; }
.cc-banner p { margin: 0 0 12px 0; }

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

.cc-actions .btn {
  border-radius: 10px;
}

.cc-actions .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.6);
}

.cc-actions .btn-primary {
  background: #ffffff;
  color: #000;
  border: 1px solid #fff;
}

.cc-actions .btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

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

.cc-modal {
  width: 100%;
  max-width: 720px;
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.cc-modal h2 { margin: 0 0 8px 0; }
.cc-modal p { margin: 0 0 12px 0; }
.cc-modal .cc-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-top: 1px solid #eee; }
.cc-modal .cc-row:first-of-type { border-top: none; }
.cc-modal .cc-row label { flex: 1; }
.cc-modal .cc-row small { display: block; color: #666; margin-top: 2px; }
.cc-modal .cc-footer { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.cc-hidden { display: none !important; }

