#age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Premium overlay */
   background: rgba(0, 0, 0, 0.6); /* lighter */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    transition: opacity 0.4s ease;
}

.age-box {
    text-align: center;
    color: #fff;

    /* POPUP CARD STYLE */
    background: #000;
    padding: 50px 40px;
    border-radius: 20px;
    width: 650px;
    max-width: 90%;

    box-shadow: 0 20px 60px rgba(0,0,0,0.6);

    /* Animation */
    transform: scale(0.85);
    opacity: 0;
    animation: popupZoom 0.4s ease forwards;
}
/* Keyframes */
@keyframes popupZoom {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo {
    font-size: 60px;
    letter-spacing: 5px;
}

.tagline {
    margin-bottom: 40px;
    font-size: 16px;
    letter-spacing: 3px;
}

.question {
    font-size: 22px;
    margin-bottom: 30px;
	padding-top:110px;
}

.buttons button {
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    margin: 10px;
    font-size: 18px;
    cursor: pointer;
	transition: all 0.3s ease;
}

#age-yes {
    background: #19c2a5;
    color: #fff;
	transform: translateY(-2px);s
}

#age-no {
    background: #444;
    color: #fff;
	transform: translateY(-2px);
}

.remember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #ccc;
}

/* Hide default checkbox */
.remember input {
    display: none;
}

/* Circle base */
.checkmark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #19c2a5; /* FILLED */
    position: relative;
    display: inline-block;
}

/* Tick */
.checkmark::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 6px;
    width: 7px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* UNCHECKED STATE */
.remember input:not(:checked) + .checkmark {
    background: transparent;
    border: 2px solid #555;
}

/* Hide tick when unchecked */
.remember input:not(:checked) + .checkmark::after {
    opacity: 0;
}