.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;

  background: rgba(20, 20, 20, 0.95);
  color: white;

  border-radius: 12px;
  padding: 18px 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  animation: fadeUp 0.4s ease;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
}

.cookie-btn {
  border: none;
  background: #ffffff;
  color: #111111;

  padding: 10px 18px;
  border-radius: 8px;

  font-weight: 600;
  cursor: pointer;

  transition: all 0.3s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}