/* Cookie Banner - Bottom Right Box (nscale-style) */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 48px);
  background: rgba(28, 28, 28, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
  z-index: 10000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-header {
  margin: 0 0 12px 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cookie-text {
  color: rgba(238, 240, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
}

.btn-cookie {
  flex: 1;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-essential,
.btn-reject {
  background: transparent;
  color: rgba(238, 240, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-essential:hover,
.btn-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-accept {
  background: #7b7ef2;
  color: white;
  border: 1px solid #7b7ef2;
}

.btn-accept:hover {
  background: #8b8ef5;
  border-color: #8b8ef5;
}

/* Mobile - full width at bottom */
@media (max-width: 768px) {
  #cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 24px 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .btn-cookie {
    padding: 14px;
  }
}
