.cc-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.cc-banner.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.cc-card {
  margin: 0 auto;
  max-width: 960px;
  background: rgba(8, 8, 9, 0.94);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  padding: 18px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cc-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 207, 47, 0.92);
}

.cc-copy h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.cc-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.cc-text a {
  color: #fccf2f;
}

.cc-actions,
.cc-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cc-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.cc-btn:hover {
  transform: translateY(-1px);
}

.cc-btn-primary {
  background: #fccf2f;
  color: #111111;
}

.cc-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.cc-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cc-settings {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.cc-option strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.cc-option small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

.cc-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #fccf2f;
}

.cc-option-required {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .cc-banner {
    inset: auto 10px 10px 10px;
  }

  .cc-card {
    padding: 16px;
    border-radius: 16px;
  }

  .cc-copy h2 {
    font-size: 18px;
  }

  .cc-text {
    font-size: 13px;
  }

  .cc-actions,
  .cc-settings-actions {
    flex-direction: column;
  }

  .cc-btn {
    width: 100%;
    justify-content: center;
  }

  .cc-option {
    flex-direction: column;
    gap: 8px;
  }
}
