:root {
  --popup-bg: #ffffff;
  --popup-text: #1b1b1b;
  --popup-accent: #ffb347;
  --popup-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background-image: url("instad_desktop copy.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.cookie-popup {
  width: min(460px, 92vw);
  background: var(--popup-bg);
  color: var(--popup-text);
  border-radius: 18px;
  padding: 22px 24px 24px;
  box-shadow: var(--popup-shadow);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cookie-popup h1 {
  font-size: 20px;
  margin: 0 0 10px;
}

.cookie-popup p {
  margin: 0 0 18px;
  line-height: 1.4;
  font-size: 14px;
}

.cookie-cta {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffb347, #ff7a59);
  color: #1b1b1b;
  cursor: pointer;
}

.cookie-cta:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  body {
    background-image: url("mobile_id (1).png");
    background-position: center top;
  }

  .page {
    padding: 20px;
  }
}
