.cookie-consent {
  position: fixed;
  top: auto !important;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 9999;
  display: none;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  pointer-events: none;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent .cookie-consent__panel {
  position: relative !important;
  width: min(100%, 760px) !important;
  padding: 12px 14px !important;
  display: grid;
  grid-template-columns: 1fr auto !important;
  gap: 12px !important;
  align-items: center !important;
  color: #eef8ff !important;
  background: rgba(3, 9, 23, 0.94) !important;
  border: 1px solid rgba(0, 217, 255, 0.28) !important;
  border-radius: 8px !important;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(0, 217, 255, 0.1) !important;
  pointer-events: auto;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
}

.cookie-consent .cookie-consent__panel::before,
.cookie-consent .cookie-consent__panel::after {
  display: none !important;
  content: none !important;
}

.cookie-consent .cookie-consent__copy,
.cookie-consent .cookie-consent__actions {
  position: static !important;
}

.cookie-consent .cookie-consent__title {
  margin: 0 0 2px !important;
  color: #eef8ff !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.cookie-consent .cookie-consent__text {
  margin: 0 !important;
  color: #aebfd3 !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.cookie-consent .cookie-consent__text a {
  color: #eef8ff !important;
  font: inherit !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-transform: none !important;
  text-shadow: none !important;
}

.cookie-consent .cookie-consent__actions {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: auto !important;
}

.cookie-consent .cookie-consent__button {
  position: static !important;
  width: auto !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  overflow: visible !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  border-radius: 6px !important;
  color: #eef8ff !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  -webkit-text-fill-color: currentColor !important;
  animation: none !important;
  cursor: pointer;
  white-space: nowrap;
  transform: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease !important;
}

.cookie-consent .cookie-consent__button:hover,
.cookie-consent .cookie-consent__button:focus-visible {
  border-color: rgba(255, 255, 255, 0.58) !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.cookie-consent .cookie-consent__button.cookie-consent__button--accept {
  color: #02050d !important;
  background: #00d9ff !important;
  border-color: #00d9ff !important;
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.25) !important;
}

@media (max-width: 720px) {
  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-consent .cookie-consent__panel {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .cookie-consent .cookie-consent__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .cookie-consent .cookie-consent__button {
    width: 100% !important;
  }
}
