/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 860px;
  background: rgba(13, 13, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 18px 24px;
  z-index: 99999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: cookieSlideUp 0.3s ease-out;
  box-sizing: border-box;
}
@keyframes cookieSlideUp {
  from { transform: translate(-50%, 30px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1 1 380px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #cccccc;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.cookie-text strong {
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cccccc;
}
.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.cookie-btn-accept {
  background: #2ecc71;
  border: 1px solid #2ecc71;
  color: #050505;
  font-weight: 600;
}
.cookie-btn-accept:hover {
  background: #27ae60;
  border-color: #27ae60;
}
@media (max-width: 600px) {
  .cookie-banner { bottom: 12px; width: calc(100% - 24px); padding: 14px 16px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .cookie-btn { flex: 1; text-align: center; }
}
