.app_entity {
    margin: 80px auto 40px;
    padding-top: 20px;
    text-align: center;
    justify-content: center; 
}
.app_entity_icon {
    margin-top: 32px;
    margin-bottom: 32px;
}
.app_entity_icon img {
    display: block;
    width: 96px;
    height: 96px;
    margin: 0 auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
}

.app_entity_name-box {
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
}
.app_entity_name {
    display: inline-block;
    font-size: 36px;
    letter-spacing: 0.8px;
    text-align: center;
    line-height: 48px;
    font-weight: normal;
}
.app_entity_comment {
    position: relative;
    height: 32px;
    margin: 0 auto;
    overflow: hidden;
    font-weight: normal;
    font-size: 18px;
    opacity: 0.6;
}

.app_entity_description-container {
    margin: 0 auto; 
    padding: 10px; 
}
.app_entity_description {
    margin: 12px 0 16px;
    text-align: justify; 
    line-height: 120%;
}

.app_download {
    display: block;
    padding: 12px;
    border-radius: 4px;
}
.screenshot-swiper-container {
    display: flex; 

    margin-top: 16px; 
    margin-left: auto;  
    margin-right: auto; 

    justify-content: space-around; 
    align-items: center; 
}
.screenshot-swiper-container img {
    width: 28%; 
    height: auto; 
    margin-left: 8px;  
    margin-right: 8px; 
}

@media (max-width: 800px) {
    body,
    #app_calc_info {
        margin-top: 0;
        box-shadow: none;
    }
    
    .app_entity {
        padding-top: 40px;
    }
    .app_entity_icon {
        margin-top: 40px;
        margin-bottom: 24px;
    }
}

@media (prefers-color-scheme: dark) {
    #app_calc_info {
        background: #1a1a1a;
    }

    .app_entity {
        color: rgba(255, 255, 255, 0.87);
    }

    .app_entity_name {
        color: rgba(255, 255, 255, 0.95);
    }

    .app_entity_comment {
        color: rgba(255, 255, 255, 0.6);
    }

    .app_entity_description {
        color: rgba(255, 255, 255, 0.87);
    }
}