.cc-banner,
.cc-modal {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.cc-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.cc-banner a {
  color: #fff;
  text-decoration: underline;
}

.cc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.cc-text {
  flex: 1 1 420px;
  min-width: 260px;
  line-height: 1.35;
  font-size: 0.95rem;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cc-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cc-btn-primary {
  background: #2b6cff;
  border-color: #2b6cff;
}

.cc-btn:hover {
  filter: brightness(1.06);
}

.cc-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

.cc-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  width: min(560px, calc(100vw - 2rem));
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 1rem 1rem 0.75rem;
  display: none;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.cc-modal h2 {
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

.cc-modal p {
  margin: 0 0 0.75rem;
  color: #333;
}

.cc-opt {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.cc-opt strong {
  display: block;
  margin-bottom: 0.15rem;
}

.cc-opt small {
  color: #555;
}

.cc-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.cc-modal .cc-btn {
  border-color: rgba(0, 0, 0, 0.15);
  color: #111;
}

.cc-modal .cc-btn-primary {
  color: #fff;
}

