html.cookie-consent-lock,
body.cookie-consent-lock {
  overflow: hidden;
}

.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  font-family: "Inter", sans-serif;
}

.cookie-consent-overlay[hidden] {
  display: none !important;
}

.cookie-consent-modal {
  position: relative;
  width: min(100%, 460px);
  padding: 28px 24px 20px;
  border: 1px solid rgba(204, 0, 0, 0.48);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(64, 0, 0, 0.92), rgba(13, 13, 13, 0.98)),
    #0d0d0d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  color: #fff;
  text-align: center;
}

.cookie-consent-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.8;
}

.cookie-consent-actions {
  margin-top: 22px;
}

.cookie-consent-btn,
.cookie-consent-decline,
.cookie-consent-close {
  font: inherit;
}

.cookie-consent-btn,
.cookie-consent-decline {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #990000, #cc0000);
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(22px, 5vw, 28px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.cookie-consent-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.cookie-consent-decline {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-consent-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 560px) {
  .cookie-consent-overlay {
    padding: 16px;
  }

  .cookie-consent-modal {
    width: 100%;
    padding: 26px 18px 18px;
    border-radius: 16px;
  }

  .cookie-consent-copy {
    font-size: 14px;
  }

  .cookie-consent-btn {
    min-height: 56px;
    font-size: 24px;
  }
}
