/* Cookie consent banner styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1f2937;
  border-top: 1px solid #374151;
  padding: 16px 24px;
  animation: cb-slide-up 0.3s ease-out;
}
@keyframes cb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cb-inner p {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.cb-inner a {
  color: #93c5fd;
  text-decoration: underline;
}
.cb-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cb-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.cb-btn-primary {
  background: #2563eb;
  color: #fff;
}
.cb-btn-primary:hover {
  background: #1d4ed8;
}
.cb-btn-secondary {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #4b5563;
}
.cb-btn-secondary:hover {
  background: #374151;
  color: #fff;
}
@media (max-width: 640px) {
  .cb-inner { flex-direction: column; text-align: center; }
  .cb-buttons { width: 100%; justify-content: center; }
}
