.cookie-popup-container {
  display: none;
}

.cookie-popup-container * {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  box-sizing: border-box;
}

.cookie-popup-container .cookie-popup {
  width: min(880px, 92vw);
  border-radius: 1.25rem;
  padding: 1.125rem 1.5rem;
  background: rgba(14, 14, 28, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.5rem;
  z-index: 999999 !important;
  border: 1px solid rgba(139, 92, 246, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(139, 92, 246, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: opacity 300ms ease, transform 300ms ease;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  color: #9090b0;
}

.cookie-popup-container .cookie-popup .cookie-popup-content-container .nowrap {
  white-space: nowrap;
}

.cookie-popup-container .cookie-popup .cookie-content {
  flex: 1;
  min-width: 0;
}

.cookie-popup-container .cookie-popup .cookie-decide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cookie-popup-container .cookie-decide ul {
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cookie-decide ul li.allow {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.6rem 1.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 300ms ease, transform 200ms ease, box-shadow 300ms ease;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.35);
}

.cookie-decide ul li.allow:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5);
}

a.policy-href {
  text-decoration: none;
  font-size: 0.875rem !important;
  line-height: 1.65;
  font-weight: 600 !important;
  color: #8b5cf6;
  transition: color 250ms ease;
}

a.policy-href:hover {
  color: #a78bfa;
}

@media screen and (max-width: 560px) {
  .cookie-popup-container .cookie-popup {
    bottom: 1rem;
    padding: 1rem 1.125rem;
  }

  .cookie-popup-container .cookie-popup .cookie-popup-content-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .cookie-popup-container .cookie-popup .cookie-content {
    max-width: 100%;
  }

  .cookie-decide ul li.allow {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1.25rem;
  }
}
