.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  backdrop-filter: blur(10px);
  background: rgba(17, 20, 28, 0.65);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-btn {
  background: linear-gradient(45deg, #6080ff, #5f7efc);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.cookie-btn:hover {
  opacity: 0.85;
}