#cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  background: rgba(10, 18, 35, 0.92);
  color: #e8eefc;
  border: 1px solid rgba(120, 160, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  padding: 14px;
  display: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#cc-banner .cc-wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

#cc-banner .cc-title{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

#cc-banner .cc-text{
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.92;
}

#cc-banner .cc-links a{
  color: #8fb5ff;
  text-decoration: none;
}
#cc-banner .cc-links a:hover{
  text-decoration: underline;
}

#cc-banner .cc-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

#cc-banner button{
  border: 1px solid rgba(160, 190, 255, 0.28);
  background: rgba(255,255,255,0.06);
  color: #eaf0ff;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 13px;
  cursor: pointer;
}

#cc-banner button:hover{
  background: rgba(255,255,255,0.10);
}

#cc-banner .cc-primary{
  border-color: rgba(80, 210, 140, 0.65);
  background: rgba(80, 210, 140, 0.18);
}
#cc-banner .cc-primary:hover{
  background: rgba(80, 210, 140, 0.26);
}

#cc-banner .cc-danger{
  border-color: rgba(255, 120, 120, 0.55);
}

#cc-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#cc-modal .cc-modal-card{
  width: min(720px, calc(100vw - 32px));
  margin: 40px auto;
  background: rgba(12, 20, 40, 0.95);
  color: #e8eefc;
  border: 1px solid rgba(120, 160, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  padding: 16px;
}

#cc-modal .cc-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#cc-modal .cc-row:first-of-type{
  border-top: none;
}

#cc-modal .cc-h{
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px 0;
}

#cc-modal .cc-small{
  font-size: 13px;
  opacity: 0.92;
  margin: 0;
}

.cc-switch{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.cc-switch input[type="checkbox"]{
  width: 18px;
  height: 18px;
}

#cc-modal .cc-footer{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}

/* Footer links (privacy/cookies/settings) */
footer .footer-links{
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
footer .footer-links a{
  color: rgba(232,238,252,0.92);
  text-decoration: none;
}
footer .footer-links a:hover{
  text-decoration: underline;
}
footer .footer-links .sep{
  opacity: 0.55;
}

/* Necessary cookies are always enabled */
#cc-necessary[disabled] {
  cursor: not-allowed;
  opacity: 0.85;
}
