/* ===== Brainstormers Cookie Consent ===== */
.cc-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 2147483000;
    display: flex; justify-content: center;
    padding: 16px;
    pointer-events: none;
}
.cc-card {
    pointer-events: auto;
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    padding: 22px 22px 18px;
    font-family: 'Satoshi', system-ui, sans-serif;
}
html.dark .cc-card { background: #1e1e1e; color: #f6f6f6; border-color: rgba(255,255,255,0.12); }
.cc-title { font-family: 'Clash Display', system-ui, sans-serif; font-weight: 700; font-size: 18px; margin: 0 0 8px; }
.cc-text { font-size: 13.5px; line-height: 1.6; opacity: 0.8; margin: 0 0 16px; }
.cc-text a { color: #8b3dff; text-decoration: underline; }
.cc-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cc-btn {
    flex: 1 1 auto; min-width: 120px;
    font-family: 'Satoshi', system-ui, sans-serif;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 12px 16px; border-radius: 999px; cursor: pointer;
    border: 1px solid transparent; transition: all .2s ease;
}
.cc-btn-primary { background: #8b3dff; color: #ffffff; }
.cc-btn-primary:hover { filter: brightness(1.08); }
.cc-btn-ghost { background: transparent; color: inherit; border-color: rgba(0,0,0,0.18); }
html.dark .cc-btn-ghost { border-color: rgba(255,255,255,0.22); }
.cc-btn-ghost:hover { background: rgba(139,61,255,0.08); border-color: #8b3dff; }
.cc-btn-text { flex: 0 0 100%; background: transparent; color: inherit; opacity: 0.7; text-transform: none; letter-spacing: 0; font-weight: 600; padding: 4px; }
.cc-btn-text:hover { opacity: 1; color: #8b3dff; }

/* Preferences */
.cc-prefs { margin: 4px 0 16px; border-top: 1px solid rgba(0,0,0,0.08); }
html.dark .cc-prefs { border-top-color: rgba(255,255,255,0.10); }
.cc-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
html.dark .cc-row { border-bottom-color: rgba(255,255,255,0.08); }
.cc-row:last-child { border-bottom: none; }
.cc-row-info { flex: 1; }
.cc-row-title { font-weight: 700; font-size: 13.5px; }
.cc-row-desc { font-size: 12.5px; line-height: 1.5; opacity: 0.7; margin-top: 2px; }
.cc-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.cc-switch input { opacity: 0; width: 0; height: 0; }
.cc-slider { position: absolute; inset: 0; background: rgba(0,0,0,0.2); border-radius: 999px; transition: .25s; cursor: pointer; }
html.dark .cc-slider { background: rgba(255,255,255,0.2); }
.cc-slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .25s; }
.cc-switch input:checked + .cc-slider { background: #8b3dff; }
.cc-switch input:checked + .cc-slider::before { transform: translateX(18px); }
.cc-switch input:disabled + .cc-slider { opacity: 0.55; cursor: not-allowed; }

/* Reopen floating button */
.cc-reopen {
    position: fixed; left: 18px; bottom: 18px; z-index: 2147482000;
    width: 42px; height: 42px; border-radius: 50%;
    background: #1e1e1e; color: #fff; border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25); transition: transform .2s ease;
    font-size: 20px; line-height: 1;
}
.cc-reopen:hover { transform: scale(1.08); }

@media (max-width: 520px) {
    .cc-btn { min-width: 0; }
}
