* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.bg__blur {
    position: fixed;
    inset: 0;
    background-image: url("background__desktop.png");
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.08);
    z-index: 1;
}

.bg__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.card__cookies {
    position: relative;
    z-index: 3;
    width: min(520px, 92vw);
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card__content h2,
.card__content p {
    padding-bottom: 1.5rem;
}

.btn{
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: #8b2c4f;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
    background: #732442;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

@media (max-width:768px) {
    .bg__blur {
        background-image: url("background__mobile.png");
    }
}

@media (max-width:480px) {
.bg__blur {
        background-image: url("background__mobile.png");
    }
}