.no-scroll {
    overflow: hidden;
}

.age-modal {
    background: rgb(102, 14, 186);
    background: radial-gradient(circle, rgba(102, 14, 186, 1) 0%, rgba(76, 15, 135, 1) 100%);
}

.age-modal-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 32px 70px rgba(33, 5, 60, 0.35);
}

.age-left-col {
    animation: fadeIn 0.5s ease-in-out;
}

.age-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 600px;
    justify-content: center;
    align-items: center;
}

.age-buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 1.5rem;
    cursor: pointer;
    font-family: var(--poppins-font);
    font-weight: 500;
    font-size: 24px;
    transition: background-color 0.3s ease-in-out;
}

.age-no,
.age-yes {
    border: 2px solid #FFF;
    color: #FFF;
    background-color: transparent;
}

.age-no:hover,
.age-yes:hover {
    background-color: #fff;
    color: #660EBA;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 1118px) {
    .sm\:hidden {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .age-modal-container {
        flex-direction: column;
        padding: 2rem;
    }

    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .sm\:text-1xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .age-buttons button {
        font-size: 20px;
        padding: 4px 12px;
        border-radius: 1rem;
    }
}