.CookieConsentOverlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 18, 0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.CookieConsentCard {
  width: min(520px, 100%);
  background: linear-gradient(140deg, rgba(12, 22, 30, 0.96), rgba(8, 14, 22, 0.92));
  border: 1px solid rgba(68, 226, 201, 0.25);
  border-radius: 18px;
  padding: 24px;
  color: #e6fffb;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.CookieConsentCard h3 {
  margin: 0;
  font-size: 1.4rem;
}

.CookieConsentCard p {
  margin: 0;
  color: rgba(230, 255, 251, 0.75);
  line-height: 1.6;
}

.CookieConsentLink {
  color: #44e2c9;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
}

.CookieConsentLink:hover {
  color: #6cf0dc;
}

.CookieConsentError {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #fee2e2;
  font-size: 0.85rem;
}

.CookieConsentActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.CookieConsentButton {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.CookieConsentButton:active {
  transform: translateY(1px);
}

.CookieConsentAccept {
  background: rgba(68, 226, 201, 0.18);
  color: #e6fffb;
  border-color: rgba(68, 226, 201, 0.5);
  box-shadow: 0 12px 22px rgba(32, 203, 176, 0.2);
}

.CookieConsentAccept:hover {
  border-color: rgba(68, 226, 201, 0.85);
  box-shadow: 0 16px 28px rgba(32, 203, 176, 0.28);
}

.CookieConsentLeave {
  background: rgba(230, 255, 251, 0.08);
  color: rgba(230, 255, 251, 0.85);
  border-color: rgba(230, 255, 251, 0.2);
}

.CookieConsentLeave:hover {
  border-color: rgba(230, 255, 251, 0.45);
}

@media (max-width: 600px) {
  .CookieConsentActions {
    flex-direction: column;
    align-items: stretch;
  }
}
