.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #020617;
  border: 1px solid #1f2937;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 9999;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.cookie-banner .text {
  flex: 1;
  color: #e5e7eb;
}

.cookie-banner .text a {
  color: #00A8FF;
  text-decoration: underline;
}

.cookie-banner .actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner .btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.cookie-banner .btn-accept {
  background: #00A8FF;
  color: #020617;
}

.cookie-banner .btn-decline {
  background: #020617;
  color: #e5e7eb;
  border: 1px solid #4b5563;
}

.cookie-banner .btn-manage {
  background: transparent;
  color: #9ca3af;
  text-decoration: underline;
  padding: 8px;
}

.cc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cc-modal {
  background: #020617;
  border-radius: 12px;
  padding: 20px;
  max-width: 720px;
  width: 94%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  color: #e5e7eb;
  border: 1px solid #1f2937;
}

.cc-modal h2 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.cc-modal p {
  margin: 0 0 14px 0;
  color: #9ca3af;
}

.cc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #111827;
}

.cc-toggle label { font-weight:600; color:#e5e7eb; }
.cc-toggle small { color:#6b7280; }

.cc-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.cc-modal .modal-actions {
  margin-top: 16px;
  text-align: right;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner .actions { justify-content: flex-end; }
  .cc-modal { padding: 16px; }
}
