.cc-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 10000;
  background: #161616;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  padding: 1.25rem 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  display: none;
}
.cc-banner.is-visible { display: block; }
.cc-banner__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; color: #ffffff; }
.cc-banner__text { color: #cccccc; margin-bottom: 1rem; font-size: 0.88rem; }
.cc-banner__text a { color: #ffcd46; text-decoration: underline; }
.cc-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cc-btn {
  flex: 1; min-width: 7.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease; border: 1px solid transparent;
  font-family: inherit;
}
.cc-btn--accept { background: #ffcd46; color: #0f0f0f; }
.cc-btn--accept:hover { background: #ffd966; }
.cc-btn--reject { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.16); }
.cc-btn--reject:hover { background: rgba(255,255,255,0.06); }
.cc-btn--settings { background: transparent; color: #cccccc; border-color: rgba(255,255,255,0.16); }
.cc-btn--settings:hover { color: #ffcd46; border-color: #ffcd46; }
.cc-modal { position: fixed; inset: 0; z-index: 10001; background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(6px); }
.cc-modal.is-visible { display: flex; }
.cc-modal__panel {
  width: 100%; max-width: 32rem;
  background: #1a1a1a; color: #ffffff;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 1.5rem;
  max-height: 80vh; overflow-y: auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.cc-modal__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.cc-cat { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cc-cat:last-of-type { border-bottom: none; }
.cc-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.4rem; }
.cc-cat__name { font-weight: 600; font-size: 0.95rem; }
.cc-cat__desc { font-size: 0.82rem; color: #9a9a9a; line-height: 1.5; }
.cc-toggle { position: relative; width: 2.5rem; height: 1.25rem; background: rgba(255,255,255,0.15); border-radius: 999px; cursor: pointer; transition: all 0.2s; }
.cc-toggle.is-on { background: #ffcd46; }
.cc-toggle.is-disabled { opacity: 0.5; cursor: not-allowed; }
.cc-toggle::after { content: ""; position: absolute; top: 0.15rem; left: 0.15rem; width: 0.95rem; height: 0.95rem; background: #fff; border-radius: 50%; transition: all 0.2s; }
.cc-toggle.is-on::after { transform: translateX(1.25rem); background: #0f0f0f; }
.cc-modal__actions { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.cc-settings-link { background: none; border: none; color: inherit; cursor: pointer; text-decoration: underline; font: inherit; padding: 0; }

@media (max-width: 768px) {
  .cc-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; padding: 1rem 1.25rem; }
  .cc-btn { flex: 1 1 100%; }
}
