/* Cookie Banner (minimal, accessible) */
#cc-banner, #cc-modal {font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;}
#cc-banner { position: fixed; inset: auto 16px 16px 16px; z-index: 9999;
  background: #0b1220; color: #e2e8f0; border-radius: 12px; padding: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25); display: none; max-width: 860px; margin: 0 auto; }
#cc-banner.show { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
#cc-banner h3 { margin: 0 0 6px 0; font-size: 1.05rem; color: #fff; }
#cc-banner p { margin: 0; font-size: .95rem; opacity: .95; }
#cc-banner .cc-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.cc-btn { appearance: none; border-radius: 999px; padding: 10px 14px; font-weight: 700; border: 2px solid transparent; cursor: pointer; }
.cc-accept { background: #1f7a5c; color: #fff; border-color: #1f7a5c; }
.cc-reject { background: transparent; color: #e2e8f0; border-color: #334155; }
.cc-settings { background: #1f2937; color: #e2e8f0; }
#cc-banner a { color: #93c5fd; text-decoration: underline; }
#cc-modal { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.55); display:none; }
#cc-modal.show { display:flex; align-items:center; justify-content:center; padding: 16px; }
#cc-modal .cc-card { background:#fff; color:#0f172a; border-radius:16px; max-width:720px; width:100%; padding: 18px; }
.cc-card h3 { margin: 0 0 8px 0; }
.cc-row { display:grid; grid-template-columns: 1fr auto; align-items:center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eef2f7; }
.cc-row:last-child { border-bottom: 0; }
.cc-toggle { position: relative; width: 46px; height: 26px; background:#e5e7eb; border-radius: 999px; cursor: pointer; }
.cc-toggle input { position: absolute; opacity:0; inset:0; }
.cc-toggle .knob { position:absolute; top:3px; left:3px; width:20px; height:20px; border-radius:999px; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.2); transition: all .2s; }
.cc-toggle input:checked + .knob { transform: translateX(20px); background:#fff; }
.cc-toggle input:checked ~ .track { background:#1f7a5c; }
.cc-actions-modal { display:flex; justify-content:flex-end; gap:10px; padding-top: 12px; }
.cc-small { font-size: .9rem; opacity:.9; }