.cookie-content {
  position: relative;

  padding: 24px;
  border-radius: 24px;

  background:
    radial-gradient(circle at top right,
      rgba(56,189,248,0.15),
      transparent 40%),
    linear-gradient(
      145deg,
      rgba(15,23,42,0.98),
      rgba(2,6,23,0.96)
    );

  border: 1px solid rgba(56,189,248,0.18);

  backdrop-filter: blur(18px);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.50),
    0 0 30px rgba(56,189,248,0.08);

  overflow: hidden;
}

.cookie-content::before,
.cookie-content::after {
  content: "";

  position: absolute;
  border-radius: 999px;

  pointer-events: none;
}

.cookie-content::before {
  width: 140px;
  height: 140px;

  top: -60px;
  right: -60px;

  background: rgba(56,189,248,0.10);

  filter: blur(30px);
}

.cookie-content::after {
  width: 100px;
  height: 100px;

  bottom: -50px;
  left: -50px;

  background: rgba(14,165,233,0.08);

  filter: blur(25px);
}

.cookie-banner {
  position: fixed;

  bottom: 24px;
  right: 24px;

  width: 520px;
  max-width: calc(100vw - 32px);

  z-index: 99999;

  animation: cookieSlideUp 0.45s ease;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-content h4,
.cookie-content p {
  position: relative;
  z-index: 2;
}

.cookie-content h4 {
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn-primary,
  .cookie-actions .btn-secondary {
    width: 100%;
  }
}