/* ==============================
   H5BROS — Cookie Consent Banner
   ============================== */
#cmp-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: #0d1117; border-top: 2px solid #0fb8cc;
  padding: 16px 20px; display: none;
  font-family: var(--font-main, 'Nunito', sans-serif);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
#cmp-banner.cmp-show { display: block; animation: cmpSlideUp 0.35s ease; }
@keyframes cmpSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.cmp-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.cmp-text { flex: 1; min-width: 260px; color: rgba(255,255,255,0.85); font-size: 0.82rem; line-height: 1.6; }
.cmp-text a { color: #20e8ff; text-decoration: underline; }

.cmp-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }

.cmp-btn {
  padding: 9px 22px; border-radius: 99px; font-size: 0.8rem; font-weight: 800;
  cursor: pointer; border: none; font-family: inherit; transition: opacity 0.15s, transform 0.15s;
}
.cmp-btn:hover { opacity: 0.9; transform: scale(1.03); }
.cmp-btn-accept { background: #0fb8cc; color: #fff; }
.cmp-btn-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.3); }
.cmp-btn-settings { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); font-size: 0.75rem; padding: 7px 16px; }

/* Settings panel */
#cmp-settings { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
#cmp-settings.cmp-open { display: block; }

.cmp-option { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 600; }
.cmp-option input[type="checkbox"] { accent-color: #0fb8cc; width: 16px; height: 16px; }
.cmp-option-required { color: rgba(255,255,255,0.4); font-size: 0.7rem; }

@media (max-width: 600px) {
  .cmp-inner { flex-direction: column; align-items: stretch; }
  .cmp-actions { justify-content: stretch; }
  .cmp-btn { flex: 1; text-align: center; }
}
