.presell-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.presell-footer {
  margin-top: auto;
  background-color: #111111;
  color: #ffffff;
  padding: 22px 0;
}

.presell-footer p {
  font-size: 14px;
}

.cookies-locked {
  overflow: hidden;
}

.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.58);
}

.cookie-modal-box {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  padding: 28px;
  background-color: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28), 0 6px 18px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: cookieSlideUp .45s ease-out both;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-modal-box h2 {
  margin-bottom: 12px;
  color: #111111;
}

.cookie-modal-box p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.45;
}

.cookie-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border-radius: 7px;
  background-color: #d51d3f;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.cookie-button:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #b91835;
}

.cookie-button-secondary {
  background-color: #f2f2f2;
  color: #111111;
}

.cookie-button-secondary:hover {
  background-color: #e5e5e5;
  color: #111111;
}

@media (max-width: 480px) {
  .cookie-modal-box {
    padding: 24px 18px;
  }
}
