#age-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

#age-popup.show {
    opacity: 1;
    visibility: visible;
}

.age-box {
    width: 100%;
    max-width: 520px;
    background: #131313;
    border-radius: 20px;
    padding: 38px 32px;
    text-align: center;
    color: var(--color-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    animation: popup .35s ease;
}

@keyframes popup {
    from {
        transform: translateY(20px) scale(.96);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.age-box h2 {
    margin: 0 0 18px;
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
}

.age-box p {
    color: #d6d6d6;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.age-buttons button {
    min-width: 155px;
    height: 56px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

#age-yes {
    border: none;
    background: var(--color-main);
    color: var(--color-white);
}

#age-yes:hover {
    background: var(--color-white);
	color: var(--color-main);
    transform: translateY(-2px);
}

#age-no {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .25);
    color: var(--color-white);
}

#age-no:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/******** Mobile ********/
@media(max-width:768px) {
    .age-box {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .age-box h2 {
        font-size: 31px;
    }

    .age-box p {
        font-size: 16px;
    }

    .age-buttons {
        flex-direction: column;
		gap: 0;
    }

    .age-buttons button {
        width: 100%;
        height: 52px;
        font-size: 17px;
    }
}