.cc-root {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 2147483000;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.cc-banner {
  width: min(1100px, calc(100% - 0px));
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.cc-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cc-text {
  flex: 1 1 420px;
  min-width: 260px;
}

.cc-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.cc-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.92;
}

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

.cc-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.cc-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.cc-btn-primary {
  background: #ffffff;
  color: #111;
  border-color: #ffffff;
}

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

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

.cc-modal {
  width: min(820px, 100%);
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.cc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

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

.cc-icon-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 10px;
}

.cc-icon-btn:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.cc-p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.5;
}

.cc-cats {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cc-cat {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 12px;
}

.cc-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

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

.cc-cat-desc {
  margin: 6px 0 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0,0,0,0.75);
}

.cc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  font-size: 13px;
}

.cc-toggle input {
  width: 18px;
  height: 18px;
}

.cc-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cc-btn-dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

.cc-btn-light {
  background: #fff;
  color: #111;
  border-color: rgba(0,0,0,0.2);
}

.cc-show {
  display: flex;
}

@media (max-width: 520px) {
  .cc-actions { width: 100%; }
  .cc-btn { flex: 1 1 auto; justify-content: center; }
}

