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

.cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(12, 18, 20, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .cc-banner {
    left: 24px;
    right: auto;
    max-width: 560px;
    bottom: 24px;
    padding: 16px;
  }
}

.cc-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.cc-text {
  font-size: 13px;
  line-height: 1.35;
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.88);
}

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

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

.cc-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.cc-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

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

.cc-btn-muted {
  background: rgba(255, 255, 255, 0.12);
}

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

.cc-modal {
  width: 100%;
  max-width: 640px;
  background: #0c1214;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.cc-modal-header {
  padding: 14px 16px 0 16px;
}

.cc-modal-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.cc-modal-body {
  padding: 10px 16px 16px 16px;
}

.cc-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-row:first-child {
  border-top: none;
}

.cc-row h3 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 700;
}

.cc-row p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.cc-switch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.cc-switch input[type="checkbox"] {
  width: 44px;
  height: 26px;
  margin: 0;
  cursor: pointer;
}

.cc-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 16px 16px 16px;
}

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

